]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/statline.cpp
gcc3 compilation fix
[wxWidgets.git] / src / gtk1 / statline.cpp
index 98bb5f04b5c3225cea85e54f7e69f5273ddc5a4a..4e8f0787cb0b5d2f1a0dad7912883a1d6b8c05fe 100644 (file)
@@ -41,12 +41,33 @@ 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( wxT("wxStaticLine creation failed") );
+        return FALSE;
+    }
 
     if ( IsVertical() )
+    {
         m_widget = gtk_vseparator_new();
+        if (size.x == -1)
+        {
+            wxSize new_size( size );
+            new_size.x = 4;
+            SetSize( new_size );
+        }
+    }
     else
+    {
         m_widget = gtk_hseparator_new();
+        if (size.y == -1)
+        {
+            wxSize new_size( size );
+            new_size.y = 4;
+            SetSize( new_size );
+        }
+    }
 
     m_parent->DoAddChild( this );