]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/radiobut.cpp
fixed memory leaks
[wxWidgets.git] / src / mac / radiobut.cpp
index a2fc26d840dc5b1e6be46b6dff01b3215570870e..f5f95dfab2ed077ed0129df18750e82cc96a650e 100644 (file)
@@ -73,6 +73,9 @@ void wxRadioButton::Command (wxCommandEvent & event)
 void wxRadioButton::MacHandleControlClick( ControlHandle control , SInt16 controlpart ) 
 {
        SetValue(true) ;
+    wxCommandEvent event(wxEVT_COMMAND_RADIOBUTTON_SELECTED, m_windowId );
+    event.SetEventObject(this);
+    ProcessCommand(event);
 }
 
 wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)