mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-26 17:20:34 +05:00
PAL9165. emit message only if no valid ImportExport file found
This commit is contained in:
parent
5013150a88
commit
873285da36
@ -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")) {
|
||||
// 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 Standard_True;
|
||||
|
||||
return Standard_False;
|
||||
return ( myResMgr->Find("Import") || myResMgr->Find("Export") );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user