]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed event table as these things are now handled by wxDialogBase.
authorStefan Neis <Stefan.Neis@t-online.de>
Sun, 20 Aug 2006 13:29:42 +0000 (13:29 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sun, 20 Aug 2006 13:29:42 +0000 (13:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/dialog.cpp

index 7900ca92a50d35fe7a867a001342e8ae69374454..12d98447d1b63c693f15e9182a0eb1203be18784 100644 (file)
 
 IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow)
 
-BEGIN_EVENT_TABLE(wxDialog, wxDialogBase)
-    EVT_BUTTON(wxID_OK, wxDialog::OnOK)
-    EVT_BUTTON(wxID_APPLY, wxDialog::OnApply)
-    EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel)
-    EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged)
-
-    EVT_CLOSE(wxDialog::OnCloseWindow)
-END_EVENT_TABLE()
-
 // ----------------------------------------------------------------------------
 // wxDialogModalData
 // ----------------------------------------------------------------------------