]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/checkbox.cpp
Made the #if wxUSE_UNICODE check correctly...
[wxWidgets.git] / src / mac / checkbox.cpp
index 7d58ccb1360fdacbeec5a16034024411161d424f..6e6aa299b2cd2470ba715ac7f41ace0f540ebf3e 100644 (file)
@@ -34,15 +34,13 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
     if ( !wxCheckBoxBase::Create(parent, id, pos, size, style, validator, name) )
         return false;
 
-    m_style = style;
-
     Rect bounds ;
     Str255 title ;
     
     MacPreControlCreate( parent , id ,  label , pos , size ,style, validator , name , &bounds , title ) ;
 
     SInt16 maxValue = 1 /* kControlCheckboxCheckedValue */;
-    if (style & wxCH_3STATE)
+    if (style & wxCHK_3STATE)
     {
         maxValue = 2 /* kControlCheckboxMixedValue */;
     }