]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Updated SALOME GUI sources for building under Ms Visual .NET on Windows platform.
authorstv <stv@opencascade.com>
Wed, 22 Feb 2006 10:28:47 +0000 (10:28 +0000)
committerstv <stv@opencascade.com>
Wed, 22 Feb 2006 10:28:47 +0000 (10:28 +0000)
src/ResExporter/ResourceExporter.cxx

index 29922a2cdb819e4fe17e62053db6e28851def77c..dd7202b63c61513196fed2cd192c4e3cc47d36b3 100644 (file)
@@ -127,7 +127,7 @@ int main( int argc, char** argv )
          QString value = resMgr->stringValue( section, param );
          QStringList valsOld = QStringList::split( separ, value );
          QStringList valsNew = QStringList::split( separ, newValue );
-         for ( int i = 0; i < valsNew.count(); i++ )
+         for ( int i = 0; i < (int)valsNew.count(); i++ )
            if ( !valsOld.contains( valsNew[i] ) )
              valsOld.append( valsNew[i] );
          resMgr->setValue( section, param, valsOld.join( separ ) );