PAL9165. emit log message only if no ImportExport file found

This commit is contained in:
eap 2005-06-14 13:34:27 +00:00
parent 2359e000c2
commit 22d4093cbc

View File

@ -383,11 +383,14 @@ Standard_Boolean GEOMImpl_IInsertOperations::InitResMgr()
#else #else
aUserResDir += "/.salome/resources"; aUserResDir += "/.salome/resources";
#endif #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")) {
// instead of complains in Resource_Manager
INFOS("No valid file \"ImportExport\" found in " << aResDir.ToCString() <<
" and in " << aUserResDir.ToCString() );
}
} }
if (myResMgr->Find("Import") || myResMgr->Find("Export")) return ( myResMgr->Find("Import") || myResMgr->Find("Export") );
return Standard_True;
return Standard_False;
} }