]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
PAL9165. emit message only if no valid ImportExport file found
authoreap <eap@opencascade.com>
Wed, 15 Jun 2005 05:54:44 +0000 (05:54 +0000)
committereap <eap@opencascade.com>
Wed, 15 Jun 2005 05:54:44 +0000 (05:54 +0000)
src/GEOMImpl/GEOMImpl_IInsertOperations.cxx

index bbf4e9980879e9c336be26d68a8a3a913c894ff6..11ec04762fdd77179271e04d7e5948dd8cf28853 100644 (file)
@@ -367,11 +367,14 @@ Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr()
 #else
     aUserResDir += "/.salome/resources";
 #endif
-    myResMgr = new Resource_Manager ("ImportExport", aResDir, aUserResDir, Standard_True);
-  }
+    myResMgr = new Resource_Manager ("ImportExport", aResDir, aUserResDir, Standard_False);
 
-  if (myResMgr->Find("Import") || myResMgr->Find("Export"))
-    return Standard_True;
+    if (!myResMgr->Find("Import") && !myResMgr->Find("Export")) {
+      // instead of complains in Resource_Manager
+      INFOS("No valid file \"ImportExport\" found in " << aResDir.ToCString() <<
+            " and in " << aUserResDir.ToCString() );
+    }
+  }
 
-  return Standard_False;
+  return ( myResMgr->Find("Import") || myResMgr->Find("Export") );
 }