]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message ***
authorstv <stv@opencascade.com>
Wed, 7 Mar 2007 10:10:53 +0000 (10:10 +0000)
committerstv <stv@opencascade.com>
Wed, 7 Mar 2007 10:10:53 +0000 (10:10 +0000)
src/Qtx/QtxMainWindow.cxx

index 8f0a3d1f06ea559065b492ff4768c8ccba3e2277..8ecc6e96c5c64766419ffd6790392c18d7fe4741 100644 (file)
@@ -236,21 +236,15 @@ QString QtxMainWindow::saveGeometry() const
   return geom;
 }
 
-#include <stdio.h>
-
 void QtxMainWindow::loadGeometry( const QString& str )
 {
   QString geom = str;
-  //  geom.remove( '\t' );
-  //  geom.remove( ' ' );
+  geom.remove( '\t' );
+  geom.remove( ' ' );
 
   QRect rect = geometry();
   QRect screen = QApplication::desktop()->availableGeometry( this );
 
-  QByteArray ba = geom.toLatin1();
-  const char* s = (const char*)ba;
-  printf( "Geometry string: %s\n", s );
-
   QRegExp szRx( "(\\d+%?)\\s*x\\s*(\\d+%?)" );
   if ( szRx.indexIn( geom ) != -1 )
   {