Salome HOME
Issue #2059 point in sketch is created not on selected line of external sketchPlane...
[modules/shaper.git] / src / Config / Config_DataModelReader.cpp
index 22c6608f7f37455f1dade3537704ef3227691c2b..20e8203508c9ec8f034260b970241df8f9c70dc5 100644 (file)
@@ -11,7 +11,6 @@
 #include <Config_Keywords.h>
 #include "Config_Common.h"
 
-#include <Events_Error.h>
 #include <Events_InfoMessage.h>
 
 
@@ -30,8 +29,9 @@ void Config_DataModelReader::processNode(xmlNodePtr theNode)
     std::string aName = getProperty(theNode, FOLDER_NAME);
     std::string aGroupType = getProperty(theNode, GROUP_TYPE);
     if (aName.empty() || aGroupType.empty())
-      Events_InfoMessage("Config_DataModelReader", "Reading dataModel.xml: wrong folder definition.").send();
-   
+      Events_InfoMessage("Config_DataModelReader",
+        "Reading dataModel.xml: wrong folder definition.").send();
+
     std::string aIcon = getProperty(theNode, NODE_ICON);
     std::string aEmpty = getProperty(theNode, SHOW_EMPTY);
     std::string aFeatures = getProperty(theNode, FOLDER_FEATURES);
@@ -91,7 +91,7 @@ int Config_DataModelReader::subFolderId(std::string theType) const
   return -1;
 }
 
-std::string getFolderFeatures(const std::string& theFolderName, 
+std::string getFolderFeatures(const std::string& theFolderName,
                     const std::vector<std::string>& theNames,
                     const std::vector<std::string>& theFeatures)
 {