]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/checkbox.cpp
* In _GSocket_Get_Mac_Socket(), do not call CFSocketSetSocketFlags to turn
[wxWidgets.git] / src / mac / carbon / checkbox.cpp
index 7d58ccb1360fdacbeec5a16034024411161d424f..e9248b99931bdff3840b38d4a0dc58b2e3e798bb 100644 (file)
@@ -24,6 +24,10 @@ IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox)
 
 #include "wx/mac/uma.h"
 
+wxCheckBoxBase::wxCheckBoxBase()
+{
+}
+
 // Single check box item
 bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
            const wxPoint& pos,
@@ -34,15 +38,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 */;
     }