]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/slider.cpp
wxMenu compile fix
[wxWidgets.git] / src / gtk1 / slider.cpp
index c28fc43e1bcfbbb7aee01ddd6c8fa0feb48e0f13..b2f0bccefc943a4d70b29db19fc091a39566ee89 100644 (file)
@@ -12,6 +12,9 @@
 #endif
 
 #include "wx/slider.h"
+
+#if wxUSE_SLIDER
+
 #include "wx/utils.h"
 #include <math.h>
 
@@ -97,7 +100,9 @@ bool wxSlider::Create(wxWindow *parent, wxWindowID id,
   
     PreCreation( parent, id, pos, size, style, name );
   
+#if wxUSE_VALIDATORS
     SetValidator( validator );
+#endif
 
     m_oldPos = 0.0;
 
@@ -289,3 +294,5 @@ void wxSlider::ApplyWidgetStyle()
     SetWidgetStyle();
     gtk_widget_set_style( m_widget, m_widgetStyle );
 }
+
+#endif