]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/slider.cpp
Small distrib updates,
[wxWidgets.git] / src / gtk1 / slider.cpp
index b2f0bccefc943a4d70b29db19fc091a39566ee89..5d115ba3b87651642e5bc06a620f8110a31d909a 100644 (file)
@@ -98,11 +98,12 @@ bool wxSlider::Create(wxWindow *parent, wxWindowID id,
     m_acceptsFocus = TRUE;
     m_needParent = TRUE;
   
-    PreCreation( parent, id, pos, size, style, name );
-  
-#if wxUSE_VALIDATORS
-    SetValidator( validator );
-#endif
+    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;