X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cf1a9b45c7b70f217d3cc282ab77df8feaadcdeb..bf7b3e2b9d68e571372e243f0f22615dbfac62fd:/src/mac/radiobox.cpp diff --git a/src/mac/radiobox.cpp b/src/mac/radiobox.cpp index b18f098d3c..c7bf4dce28 100644 --- a/src/mac/radiobox.cpp +++ b/src/mac/radiobox.cpp @@ -17,6 +17,8 @@ #pragma implementation "radiobox.h" #endif +#include "wx/defs.h" + #include "wx/radiobox.h" #include "wx/radiobut.h" #include "wx/mac/uma.h" @@ -38,12 +40,15 @@ END_EVENT_TABLE() void wxRadioBox::OnRadioButton( wxCommandEvent &outer ) { + if ( outer.IsChecked() ) + { wxCommandEvent event(wxEVT_COMMAND_RADIOBOX_SELECTED, m_windowId); int i = GetSelection() ; event.SetInt( i ); event.SetString( GetString( i ) ); event.SetEventObject( this ); ProcessCommand(event); + } } wxRadioBox::wxRadioBox() @@ -111,7 +116,7 @@ bool wxRadioBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, MacPreControlCreate( parent , id , label , pos , size ,style, val , name , &bounds , title ) ; - m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , true , 0 , 0 , 1, + m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , false , 0 , 0 , 1, kControlGroupBoxTextTitleProc , (long) this ) ; MacPostControlCreate() ;