+void wxCheckBox::MacHandleControlClick( WXWidget WXUNUSED(control), wxInt16 WXUNUSED(controlpart) , bool WXUNUSED(mouseStillDown) )
+{
+ SetValue( !GetValue() ) ;
+ wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId );
+ event.SetInt(GetValue());
+ event.SetEventObject(this);
+ ProcessCommand(event);
+}
+