X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b7276b44ce5db60d1dea4a70d863d674cc1aca96..fb8d7eb7a880f1f2e32d8830f9c5e12b2536e05f:/src/os2/button.cpp?ds=sidebyside diff --git a/src/os2/button.cpp b/src/os2/button.cpp index 41fa9c9cbc..92fda2b731 100644 --- a/src/os2/button.cpp +++ b/src/os2/button.cpp @@ -39,8 +39,6 @@ #define BST_CHECKED 0x0001 #endif -IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) - // Button bool wxButton::Create( wxWindow* pParent, @@ -223,7 +221,7 @@ void wxButton::Command ( bool wxButton::SendClickEvent() { - wxCommandEvent vEvent( wxEVT_COMMAND_BUTTON_CLICKED + wxCommandEvent vEvent( wxEVT_BUTTON ,GetId() ); @@ -248,7 +246,7 @@ void wxButton::SetTmpDefault() { wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); - wxCHECK_RET( tlw, _T("button without top level window?") ); + wxCHECK_RET( tlw, wxT("button without top level window?") ); wxWindow* pWinOldDefault = tlw->GetDefaultItem(); @@ -261,7 +259,7 @@ void wxButton::UnsetTmpDefault() { wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); - wxCHECK_RET( tlw, _T("button without top level window?") ); + wxCHECK_RET( tlw, wxT("button without top level window?") ); tlw->SetTmpDefaultItem(NULL); @@ -383,7 +381,7 @@ WXDWORD wxButton::OS2GetStyle( // // We must use WS_CLIPSIBLINGS with the buttons or they would draw over - // each other in any resizeable dialog which has more than one button in + // each other in any resizable dialog which has more than one button in // the bottom // dwStyle |= WS_CLIPSIBLINGS;