- m_needParent = TRUE;
-
- PreCreation( parent, id, pos, size, style, name );
-
- if ( IsVertical() )
- m_widget = gtk_vseparator_new();
+ if (!PreCreation( parent, pos, size ) ||
+ !CreateBase( parent, id, pos, size, style, wxDefaultValidator, name ))
+ {
+ wxFAIL_MSG( wxT("wxStaticLine creation failed") );
+ return FALSE;
+ }
+
+ const bool isVertical = IsVertical();
+ m_widget = gtk_separator_new(GtkOrientation(isVertical));
+ g_object_ref(m_widget);
+ if (isVertical)
+ {
+ if (size.x == -1)
+ {
+ wxSize new_size( size );
+ new_size.x = 4;
+ SetSize( new_size );
+ }
+ }