]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
*** empty log message ***
authorasl <asl@opencascade.com>
Wed, 1 Jun 2005 06:57:51 +0000 (06:57 +0000)
committerasl <asl@opencascade.com>
Wed, 1 Jun 2005 06:57:51 +0000 (06:57 +0000)
src/Qtx/QtxStdOperations.cxx

index a1613c40d2f882241d6067cbaab3002e2608071f..a81c1aad6906ae4a69af84b41cd3686749fd3a91 100644 (file)
@@ -346,6 +346,7 @@ QtxParser::Error QtxLogic::calculate( const QString& op,
 {
     QtxParser::Error err = QtxParser::OK;
     if( v1.isValid() && v2.isValid() )
+    {
         if( op=="and" || op=="&&" )
             set( v1, v1.toBool() && v2.toBool() );
         else if( op=="or" || op=="||" )
@@ -356,7 +357,7 @@ QtxParser::Error QtxLogic::calculate( const QString& op,
             set( v1, !v1.toBool() || v2.toBool() );
         else if( op=="=" )
             set( v1, v1.toBool()==v2.toBool() );
-
+    }
     else
         if( op=="not" || op=="!" )
             v2 = !v2.toBool();