]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Fixing 0022629: [CEA 1203] The option -r or --resources does not work
authorakl <alexander.kovalev@opencascade.com>
Tue, 8 Jul 2014 07:45:55 +0000 (11:45 +0400)
committerakl <alexander.kovalev@opencascade.com>
Tue, 8 Jul 2014 07:45:55 +0000 (11:45 +0400)
src/SUIT/SUIT_ResourceMgr.cxx

index fd4e7b72d1da197c0feddf5b5c3578496d1c33e9..dd2d9024f1e497208006f7f08dc5e7530d7fcd43 100755 (executable)
@@ -85,7 +85,7 @@ QString SUIT_ResourceMgr::userFileName( const QString& appName, const bool for_l
   // Try config file, given in arguments
   for (int i = 1; i < arguments.count(); i++) {
     QRegExp rx ("--resources=(.+)");
-    if ( rx.indexIn( arguments[i] ) >= 0 && rx.numCaptures() > 1 ) {
+    if ( rx.indexIn( arguments[i] ) >= 0 && rx.numCaptures() > 0 ) {
       QString file = rx.cap(1);
       QFileInfo fi (file);
       pathName = fi.absoluteFilePath();