Remove the now unnecessary empty wxMessageDialog dtor

No real changes, just some minor cleanup after 220dfe17ea (Replace
deprecated API usage for window modal dialogs, 2020-07-09).
This commit is contained in:
Vadim Zeitlin
2020-07-14 20:16:03 +02:00
parent ab858b5805
commit 33038a2ce7
2 changed files with 0 additions and 8 deletions

View File

@@ -21,10 +21,6 @@ public:
long style = wxOK|wxCENTRE, long style = wxOK|wxCENTRE,
const wxPoint& pos = wxDefaultPosition); const wxPoint& pos = wxDefaultPosition);
#if wxOSX_USE_COCOA
~wxMessageDialog();
#endif
virtual int ShowModal() wxOVERRIDE; virtual int ShowModal() wxOVERRIDE;
#if wxOSX_USE_COCOA #if wxOSX_USE_COCOA

View File

@@ -56,10 +56,6 @@ wxMessageDialog::wxMessageDialog(wxWindow *parent,
{ {
} }
wxMessageDialog::~wxMessageDialog()
{
}
int wxMessageDialog::ShowModal() int wxMessageDialog::ShowModal()
{ {
WX_HOOK_MODAL_DIALOG(); WX_HOOK_MODAL_DIALOG();