]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/radiobut_osx.cpp
added missing destructor
[wxWidgets.git] / src / osx / radiobut_osx.cpp
index a2908a0cf2d6f8382e1e14b2d98dd34d9cdb3e96..f1bd3fa49bf6e0d5f58dba49efd97d6cfe1b9a66 100644 (file)
@@ -97,7 +97,7 @@ void wxRadioButton::SetValue(bool val)
 
 bool wxRadioButton::GetValue() const
 {
 
 bool wxRadioButton::GetValue() const
 {
-    return m_peer->GetValue();
+    return m_peer->GetValue() != 0;
 }
 
 void wxRadioButton::Command(wxCommandEvent& event)
 }
 
 void wxRadioButton::Command(wxCommandEvent& event)
@@ -106,7 +106,7 @@ void wxRadioButton::Command(wxCommandEvent& event)
     ProcessCommand( event );
 }
 
     ProcessCommand( event );
 }
 
-bool wxRadioButton::HandleClicked( double timestampsec )
+bool wxRadioButton::OSXHandleClicked( double WXUNUSED(timestampsec) )
 {
     if ( !m_peer->ButtonClickDidStateChange() )
     {
 {
     if ( !m_peer->ButtonClickDidStateChange() )
     {
@@ -160,7 +160,7 @@ wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)
 }
 
 void wxRadioButton::RemoveFromCycle()
 }
 
 void wxRadioButton::RemoveFromCycle()
-{        
+{
     if ((m_cycle == NULL) || (m_cycle == this))
         return;
 
     if ((m_cycle == NULL) || (m_cycle == this))
         return;