From: stv Date: Wed, 22 Feb 2006 10:28:47 +0000 (+0000) Subject: Updated SALOME GUI sources for building under Ms Visual .NET on Windows platform. X-Git-Tag: LAST_STABLE_VERSION_21_09_2006_ON_3_2_0~94 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=0266a5636f7b7adb6cda1ef7e9ecf55303b68007;p=modules%2Fgui.git Updated SALOME GUI sources for building under Ms Visual .NET on Windows platform. --- diff --git a/src/ResExporter/ResourceExporter.cxx b/src/ResExporter/ResourceExporter.cxx index 29922a2cd..dd7202b63 100644 --- a/src/ResExporter/ResourceExporter.cxx +++ b/src/ResExporter/ResourceExporter.cxx @@ -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 ) );