]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/checkbox.cpp
1. applied (heavily modified) patch for reading CUR files by Chris
[wxWidgets.git] / src / mac / carbon / checkbox.cpp
index d83a2fed0534a2eb275799547009b3e4854a27f8..d6d532e5388f85f7f4e91389c9b04cc0567bd78f 100644 (file)
@@ -36,7 +36,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
        
        MacPreControlCreate( parent , id ,  label , pos , size ,style, validator , name , &bounds , title ) ;
 
-       m_macControl = ::NewControl( parent->GetMacRootWindow() , &bounds , title , false , 0 , 0 , 1, 
+       m_macControl = ::NewControl( parent->MacGetRootWindow() , &bounds , title , false , 0 , 0 , 1, 
                kControlCheckBoxProc , (long) this ) ;
        
        MacPostControlCreate() ;
@@ -47,6 +47,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
 void wxCheckBox::SetValue(bool val)
 {
    ::SetControlValue( m_macControl , val ) ;
+   MacRedrawControl() ;
 }
 
 bool wxCheckBox::GetValue() const