Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / XGUI / XGUI_ColorDialog.cpp
index 16cb5167b1bf432c3fdddd0f668724bf7e284ca3..0df84128dff23c79fcadc038edb620e2983849e9 100644 (file)
@@ -85,7 +85,8 @@ void appendValues(std::vector<int>& theRGB, const int theRed, const int theGreen
 
 bool containsValues(std::map<int, std::vector<int> >& theColorMap, std::vector<int>& theValues)
 {
-  std::map<int, std::vector<int> >::const_iterator anIt = theColorMap.begin(), aLast = theColorMap.end();
+  std::map<int, std::vector<int> >::const_iterator anIt = theColorMap.begin(), 
+                                                   aLast = theColorMap.end();
   bool isFound = false;
   for (; anIt != aLast && !isFound; anIt++) {
     std::vector<int> aValues = anIt->second;