]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
bug fixed: views' names are now stored in ' symbols not in ".
authorasv <asv@opencascade.com>
Wed, 22 Feb 2006 13:40:40 +0000 (13:40 +0000)
committerasv <asv@opencascade.com>
Wed, 22 Feb 2006 13:40:40 +0000 (13:40 +0000)
src/Qtx/QtxWorkstack.cxx

index 066f072af217e6ac7d9276c5844d5adc0d2ef882..2f84f332d7d34d75a29c79fa6b302221d8f78f32 100644 (file)
@@ -1169,7 +1169,7 @@ void QtxWorkstack::splitterInfo( QSplitter* split, QString& info ) const
        QWidgetList views = ((QtxWorkstackArea*)it.current())->widgetList();
        info += "(views";
        for ( QWidgetListIt wIt( views ); wIt.current(); ++wIt )
-         info += QString( " \"%1\"" ).arg( wIt.current()->name() );
+         info += QString( " '%1'" ).arg( wIt.current()->name() );
        info += ')';
       }
     }
@@ -1281,7 +1281,7 @@ QStringList getChildren( const QString& str )
 // getViewName( example, 1 ) -> "AnotherView", etc.
 QString getViewName( const QString& str, int i )
 {
-  QRegExp exp( "\"([\\w\\s]+)\"" );
+  QRegExp exp( "'([\\w\\s]+)'" );
   int start = 0; // start index of view name in the string
   int num = 0 ; // index of found match
   while ( ( start = exp.search( str, start ) ) != -1 && num < i ) {