From: Robin Dunn Date: Wed, 10 Mar 2004 01:17:22 +0000 (+0000) Subject: TLWs can use the WidthDefault and HeightDefault methods too X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1111cedc6a23b41737d84f8530aa8df898cbddc5 TLWs can use the WidthDefault and HeightDefault methods too git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26155 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/toplevel.cpp b/src/gtk/toplevel.cpp index 78fd8c93cb..4153c61a48 100644 --- a/src/gtk/toplevel.cpp +++ b/src/gtk/toplevel.cpp @@ -327,14 +327,8 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, // always create a frame of some reasonable, even if arbitrary, size (at // least for MSW compatibility) wxSize size = sizeOrig; - if ( size.x == -1 || size.y == -1 ) - { - wxSize sizeDpy = wxGetDisplaySize(); - if ( size.x == -1 ) - size.x = sizeDpy.x / 3; - if ( size.y == -1 ) - size.y = sizeDpy.y / 5; - } + size.x = WidthDefault(size.x); + size.y = WidthDefault(size.y); wxTopLevelWindows.Append( this ); diff --git a/src/gtk1/toplevel.cpp b/src/gtk1/toplevel.cpp index 78fd8c93cb..4153c61a48 100644 --- a/src/gtk1/toplevel.cpp +++ b/src/gtk1/toplevel.cpp @@ -327,14 +327,8 @@ bool wxTopLevelWindowGTK::Create( wxWindow *parent, // always create a frame of some reasonable, even if arbitrary, size (at // least for MSW compatibility) wxSize size = sizeOrig; - if ( size.x == -1 || size.y == -1 ) - { - wxSize sizeDpy = wxGetDisplaySize(); - if ( size.x == -1 ) - size.x = sizeDpy.x / 3; - if ( size.y == -1 ) - size.y = sizeDpy.y / 5; - } + size.x = WidthDefault(size.x); + size.y = WidthDefault(size.y); wxTopLevelWindows.Append( this );