]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/checkbox.cpp
drawing circles with a transparent pen was filling of course...
[wxWidgets.git] / src / mac / carbon / checkbox.cpp
index 11ed5fc74fef125547937c7b24b4dbdd3cb180f5..b8ad8a5169b26c3c7f55d4f04bd1a11f82748694 100644 (file)
@@ -9,11 +9,13 @@
 // Licence:       wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "checkbox.h"
 #endif
 
-#include "wx/defs.h"
+#include "wx/wxprec.h"
+
+#if wxUSE_CHECKBOX
 
 #include "wx/checkbox.h"
 
@@ -45,7 +47,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label,
     Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
     m_peer = new wxMacControl() ;
     verify_noerr( CreateCheckBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()), &bounds ,
-        CFSTR("") , 0 , false , *m_peer ) );
+        CFSTR("") , 0 , false , m_peer->GetControlRefAddr() ) );
     
     m_peer->SetMaximum( maxValue ) ;
     
@@ -178,4 +180,4 @@ bool wxBitmapCheckBox::GetValue() const
     return FALSE;
 }
 
-
+#endif