really show the window after creation (calling Show(TRUE) doesn't do it any more)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26542 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-04-01 12:40:04 +00:00
parent e3f810a21b
commit c5fc899bf2
2 changed files with 4 additions and 2 deletions

View File

@ -2732,7 +2732,8 @@ bool wxWindowGTK::Create( wxWindow *parent,
PostCreation();
Show( TRUE );
if ( IsShown() )
gtk_widget_show( m_widget );
return TRUE;
}

View File

@ -2732,7 +2732,8 @@ bool wxWindowGTK::Create( wxWindow *parent,
PostCreation();
Show( TRUE );
if ( IsShown() )
gtk_widget_show( m_widget );
return TRUE;
}