]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/statline.cpp
Small distrib updates,
[wxWidgets.git] / src / gtk / statline.cpp
index 98bb5f04b5c3225cea85e54f7e69f5273ddc5a4a..fda6826dc69b8de5d2bd1688392cd5b5248e568d 100644 (file)
@@ -41,7 +41,12 @@ bool wxStaticLine::Create( wxWindow *parent, wxWindowID id,
 {
     m_needParent = TRUE;
 
-    PreCreation( parent, id, pos, size, style, name );
+    if (!PreCreation( parent, pos, size ) ||
+        !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
+    {
+        wxFAIL_MSG( _T("wxStaticLine creation failed") );
+       return FALSE;
+    }
 
     if ( IsVertical() )
         m_widget = gtk_vseparator_new();