From 8076dc79e31583e2d0afd8f7f58ffdad76ae4b1f Mon Sep 17 00:00:00 2001 From: akl Date: Thu, 23 Aug 2007 12:42:08 +0000 Subject: [PATCH] For correct parsing 'all' value of 'os' key in the 'config.xml' file. --- src/SALOME_XmlHandler.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SALOME_XmlHandler.cxx b/src/SALOME_XmlHandler.cxx index c216183..62729d7 100644 --- a/src/SALOME_XmlHandler.cxx +++ b/src/SALOME_XmlHandler.cxx @@ -230,7 +230,7 @@ void StructureParser::getProductsInfo( const QDomNode &theNode ) if ( !instNode.isElement() ) continue; QDomElement instElem = instNode.toElement(); - if ( instElem.attribute( "os" ) != myWizard->getPlatform() ) + if ( instElem.attribute( "os" ) != myWizard->getPlatform() && instElem.attribute( "os" ) != "all" ) continue; if ( isBoolAttributeSet( instElem.attribute( "disable" ) ) ) break; // current product is skip -- 2.39.2