X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/524c47aa3adf2af11a3069fd5da035a604f08f66..02ca710b3b1d275434959ea9f6f1cfc75370146d:/src/osx/radiobut_osx.cpp?ds=sidebyside diff --git a/src/osx/radiobut_osx.cpp b/src/osx/radiobut_osx.cpp index a2908a0cf2..f1bd3fa49b 100644 --- a/src/osx/radiobut_osx.cpp +++ b/src/osx/radiobut_osx.cpp @@ -97,7 +97,7 @@ void wxRadioButton::SetValue(bool val) bool wxRadioButton::GetValue() const { - return m_peer->GetValue(); + return m_peer->GetValue() != 0; } void wxRadioButton::Command(wxCommandEvent& event) @@ -106,7 +106,7 @@ void wxRadioButton::Command(wxCommandEvent& event) ProcessCommand( event ); } -bool wxRadioButton::HandleClicked( double timestampsec ) +bool wxRadioButton::OSXHandleClicked( double WXUNUSED(timestampsec) ) { if ( !m_peer->ButtonClickDidStateChange() ) { @@ -160,7 +160,7 @@ wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle) } void wxRadioButton::RemoveFromCycle() -{ +{ if ((m_cycle == NULL) || (m_cycle == this)) return;