]> git.saurik.com Git - wxWidgets.git/commitdiff
= replaced with ==
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 14 Oct 1999 12:31:35 +0000 (12:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 14 Oct 1999 12:31:35 +0000 (12:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/motif/frame.cpp

index a5272571d00aa641282412b915f2bb1db1ad9c9d..f0ddb991e0faf14addfadfb077ff7e3fe8d751a7 100644 (file)
@@ -146,14 +146,16 @@ bool wxFrame::Create(wxWindow *parent,
 
     int x = pos.x, y = pos.y;
     int width = size.x, height = size.y;
 
     int x = pos.x, y = pos.y;
     int width = size.x, height = size.y;
-    
-    // Set reasonable values for position and size if defaults have
-    // been requested 
-    // 
-    // MB TODO: something better than these arbitrary values ?
+
+    // Set reasonable values for position and size if defaults have been
+    // requested
     //
     //
-    if ( width == -1 ) width = 400;
-    if ( height = -1 ) height = 400;
+    // MB TODO: something better than these arbitrary values ?
+    // VZ       should use X resources for this...
+    if ( width == -1 )
+        width = 400;
+    if ( height == -1 )
+        height = 400;
 
     int displayW, displayH;
     wxDisplaySize( &displayW, &displayH );
 
     int displayW, displayH;
     wxDisplaySize( &displayW, &displayH );
@@ -166,9 +168,9 @@ bool wxFrame::Create(wxWindow *parent,
     if ( y == -1 )
     {
         y = (displayH - height) / 2;
     if ( y == -1 )
     {
         y = (displayH - height) / 2;
-        if (y < 10) y = 10;        
+        if (y < 10) y = 10;
     }
     }
-        
+
     if (wxTopLevelUsed)
     {
         // Change suggested by Matthew Flatt
     if (wxTopLevelUsed)
     {
         // Change suggested by Matthew Flatt
@@ -323,7 +325,7 @@ bool wxFrame::Create(wxWindow *parent,
 wxFrame::~wxFrame()
 {
     m_isBeingDeleted = TRUE;
 wxFrame::~wxFrame()
 {
     m_isBeingDeleted = TRUE;
-    
+
     if (m_clientArea)
       XtRemoveEventHandler((Widget) m_clientArea, ExposureMask, FALSE,
           wxUniversalRepaintProc, (XtPointer) this);
     if (m_clientArea)
       XtRemoveEventHandler((Widget) m_clientArea, ExposureMask, FALSE,
           wxUniversalRepaintProc, (XtPointer) this);