]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/slider.cpp
ambiguous ctor call resolved
[wxWidgets.git] / src / gtk / slider.cpp
index c28fc43e1bcfbbb7aee01ddd6c8fa0feb48e0f13..5d115ba3b87651642e5bc06a620f8110a31d909a 100644 (file)
@@ -12,6 +12,9 @@
 #endif
 
 #include "wx/slider.h"
+
+#if wxUSE_SLIDER
+
 #include "wx/utils.h"
 #include <math.h>
 
@@ -95,9 +98,12 @@ bool wxSlider::Create(wxWindow *parent, wxWindowID id,
     m_acceptsFocus = TRUE;
     m_needParent = TRUE;
   
-    PreCreation( parent, id, pos, size, style, name );
-  
-    SetValidator( validator );
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, validator, name ))
+    {
+        wxFAIL_MSG( _T("wxSlider creation failed") );
+       return FALSE;
+    }
 
     m_oldPos = 0.0;
 
@@ -289,3 +295,5 @@ void wxSlider::ApplyWidgetStyle()
     SetWidgetStyle();
     gtk_widget_set_style( m_widget, m_widgetStyle );
 }
+
+#endif