]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/radiobut.cpp
make sure we don't keep a focus pointer to a window that gets deleted
[wxWidgets.git] / src / mac / carbon / radiobut.cpp
index 0d060bdb956755cb2ac482a3fdef6e435153d28b..e94c762f1d6ac5c8564b1410efd55713ba10a1d2 100644 (file)
@@ -68,12 +68,11 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id,
 
 void wxRadioButton::SetValue(bool val)
 {
-       int i;
        wxRadioButton *cycle;
-         if ( GetControlValue( (ControlHandle) m_macControl ) == val )
+         if ( GetControl32BitValue( (ControlHandle) m_macControl ) == val )
            return ;
            
-   ::SetControlValue( (ControlHandle) m_macControl , val ) ;
+   ::SetControl32BitValue( (ControlHandle) m_macControl , val ) ;
    if (val) 
    {
                cycle=this->NextInCycle();
@@ -89,7 +88,7 @@ void wxRadioButton::SetValue(bool val)
 
 bool wxRadioButton::GetValue() const
 {
-    return ::GetControlValue( (ControlHandle) m_macControl ) ;
+    return ::GetControl32BitValue( (ControlHandle) m_macControl ) ;
 }
 
 void wxRadioButton::Command (wxCommandEvent & event)