X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab1ce969dfb27f5d366ee6a0de3ff2bc0205b56a..12bb29f5432174ecbd65549bda832d70d34a98ae:/src/os2/checkbox.cpp diff --git a/src/os2/checkbox.cpp b/src/os2/checkbox.cpp index 84d93fc94b..eec401f3f1 100644 --- a/src/os2/checkbox.cpp +++ b/src/os2/checkbox.cpp @@ -27,7 +27,6 @@ // macros // ---------------------------------------------------------------------------- -IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) extern void wxAssociateWinWithHandle( HWND hWnd @@ -45,7 +44,7 @@ extern void wxAssociateWinWithHandle( HWND hWnd bool wxCheckBox::OS2Command( WXUINT WXUNUSED(uParam), WXWORD WXUNUSED(wId) ) { - wxCommandEvent rEvent( wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId ); + wxCommandEvent rEvent( wxEVT_CHECKBOX, m_windowId ); rEvent.SetInt(GetValue()); rEvent.SetEventObject(this); ProcessCommand(rEvent); @@ -96,7 +95,7 @@ bool wxCheckBox::Create(wxWindow* pParent, void wxCheckBox::SetLabel( const wxString& rsLabel ) { wxString sLabel=::wxPMTextToLabel(rsLabel); - ::WinSetWindowText(GetHwnd(), (PSZ)sLabel.c_str()); + ::WinSetWindowText(GetHwnd(), sLabel.c_str()); } // end of wxCheckBox::SetLabel wxSize wxCheckBox::DoGetBestSize() const