X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_FeatureReader.cpp;h=69d7176e4f22c195114462d25f64a0b0479afdd2;hb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;hp=bdd6e0801e09f4661816e72a896ac7e7f3d05011;hpb=4224f4dbe7ceaefe74b5d6b79a5840a9f5df2d7a;p=modules%2Fshaper.git diff --git a/src/Config/Config_FeatureReader.cpp b/src/Config/Config_FeatureReader.cpp index bdd6e0801..69d7176e4 100644 --- a/src/Config/Config_FeatureReader.cpp +++ b/src/Config/Config_FeatureReader.cpp @@ -24,7 +24,6 @@ #include #endif - Config_FeatureReader::Config_FeatureReader(const std::string& theXmlFile, const std::string& theLibraryName, const char* theEventGenerated) @@ -54,12 +53,12 @@ void Config_FeatureReader::processNode(xmlNodePtr theNode) //If a feature has xml definition for it's widget: aMessage.setUseInput(hasChild(theNode)); aEvLoop->send(aMessage); - //The m_last* variables always defined before fillFeature() call. XML is a tree. + //The m_last* variables always defined before fillFeature() call. XML is a tree. } else if (isNode(theNode, NODE_GROUP, NULL)) { myLastGroup = getProperty(theNode, _ID); } else if (isNode(theNode, NODE_WORKBENCH, NULL)) { myLastWorkbench = getProperty(theNode, _ID); - //Process SOURCE, VALIDATOR nodes. + //Process SOURCE, VALIDATOR nodes. } Config_XMLReader::processNode(theNode); } @@ -69,8 +68,7 @@ bool Config_FeatureReader::processChildren(xmlNodePtr theNode) return isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NODE_FEATURE, NULL); } -void Config_FeatureReader::fillFeature(xmlNodePtr theNode, - Config_FeatureMessage& outFeatureMessage) +void Config_FeatureReader::fillFeature(xmlNodePtr theNode, Config_FeatureMessage& outFeatureMessage) { outFeatureMessage.setId(getProperty(theNode, _ID)); outFeatureMessage.setPluginLibrary(myLibraryName); @@ -78,7 +76,7 @@ void Config_FeatureReader::fillFeature(xmlNodePtr theNode, bool isInternal = isInternalFeature(theNode); outFeatureMessage.setInternal(isInternal); - if(isInternal) { + if (isInternal) { //Internal feature has no visual representation. return; } @@ -94,7 +92,7 @@ bool Config_FeatureReader::isInternalFeature(xmlNodePtr theNode) { std::string prop = getProperty(theNode, FEATURE_INTERNAL); std::transform(prop.begin(), prop.end(), prop.begin(), ::tolower); - if(prop.empty() || prop == "false" || prop == "0") { + if (prop.empty() || prop == "false" || prop == "0") { return false; } return true;