]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/checkbox.h
Added defines to allow altered tab placement under gcc-2.95
[wxWidgets.git] / include / wx / gtk1 / checkbox.h
index 41f405680cb8b5a0de2385022e04af29494063a0..f26be094c84bf55db0a34d6e15d56115a5abec8c 100644 (file)
@@ -16,6 +16,9 @@
 #endif
 
 #include "wx/defs.h"
+
+#if wxUSE_CHECKBOX
+
 #include "wx/object.h"
 #include "wx/list.h"
 #include "wx/control.h"
@@ -63,14 +66,15 @@ public:
     bool GetValue() const;
 
     void SetLabel( const wxString& label );
-    void Enable( bool enable );
+    bool Enable( bool enable );
 
     // implementation
     void ApplyWidgetStyle();
 
-    bool       m_blockFirstEvent;
     GtkWidget *m_widgetCheckbox;
     GtkWidget *m_widgetLabel;
 };
 
+#endif
+
 #endif // __GTKCHECKBOXH__