]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/gauge.cpp
Removed USING_CONFIGURE define. As VZ pointed out, checking HAVE_CONFIG_H
[wxWidgets.git] / src / gtk / gauge.cpp
index ff974edef9af2ff96b6c28b6ce8ae8a613aa4d0a..e176cbe194d8a5bbffe1a02c1c63c44a426f847a 100644 (file)
@@ -12,6 +12,9 @@
 #endif
 
 #include "wx/gauge.h"
+
+#if wxUSE_GAUGE
+
 #include "gdk/gdk.h"
 #include "gtk/gtk.h"
 
@@ -29,7 +32,9 @@ bool wxGauge::Create( wxWindow *parent, wxWindowID id,  int range,
   
   PreCreation( parent, id, pos, size, style, name );
   
-  SetValidator( validator );
+#if wxUSE_VALIDATORS
+    SetValidator( validator );
+#endif
 
   m_rangeMax = range;
   m_gaugePos = 0;
@@ -78,3 +83,4 @@ void wxGauge::ApplyWidgetStyle()
   gtk_widget_set_style( m_widget, m_widgetStyle );
 }
 
+#endif