Salome HOME
Issue #1860: fix end lines with spaces
[modules/shaper.git] / src / Config / Config_XMLReader.cpp
index 1dab4ac3d46667278c11936eeba332ec55bb1b57..1a53ece53e28d328131d680dfc48dcf903e45b77 100644 (file)
@@ -36,7 +36,7 @@
 Config_XMLReader::Config_XMLReader(const std::string& theXmlFileName)
     : myXmlDoc(NULL)
 {
-  std::string prefix = ""; 
+  std::string prefix = "";
   Config_Prop* aProp = Config_PropManager::findProp("Plugins", "default_path");
   if (aProp)
     prefix = aProp->value();
@@ -51,7 +51,7 @@ Config_XMLReader::Config_XMLReader(const std::string& theXmlFileName)
 
   myDocumentPath = prefix + FSEP + theXmlFileName;
   std::ifstream aTestFile(myDocumentPath);
-  if (!aTestFile) 
+  if (!aTestFile)
     Events_InfoMessage("Config_XMLReader", "Unable to open %1").arg(myDocumentPath).send();
   aTestFile.close();
 }
@@ -201,6 +201,6 @@ bool Config_XMLReader::cleanupAttribute(const char* theNodeName, const char* the
 }
 
 const char* Config_XMLReader::encoding() const
-{ 
-  return (const char*) myXmlDoc->encoding; 
+{
+  return (const char*) myXmlDoc->encoding;
 }
\ No newline at end of file