bug 9264. enable reading plugins xml files

This commit is contained in:
eap 2005-06-23 13:16:42 +00:00
parent bcbf3a1093
commit d72c027376

View File

@ -142,8 +142,9 @@ namespace SMESH{
QString HypsXml = HypsXmlList[ i ];
// Find full path to the resource XML file
QString xmlFile = HypsXml + ".xml";
xmlFile = resMgr->path("resources", "SMESH", xmlFile);
QString xmlFile = resMgr->path("resources", "SMESH", HypsXml + ".xml");
if ( xmlFile.isEmpty() ) // try PLUGIN resources
xmlFile = resMgr->path("resources", HypsXml, HypsXml + ".xml");
QFile file (xmlFile);
if (file.exists() && file.open(IO_ReadOnly)) {