Salome HOME
#2027 Sketcher Trim feature - linux compilation correction: 100 symbols in a row
authornds <nds@opencascade.com>
Wed, 15 Mar 2017 04:52:38 +0000 (07:52 +0300)
committernds <nds@opencascade.com>
Wed, 15 Mar 2017 04:52:38 +0000 (07:52 +0300)
src/PartSet/PartSet_WidgetFeaturePointSelector.cpp

index 78fcaf12acf32e4419c89bbfb999410a75e66147..50d0ea0813608042e5df78e3b22bbc9c180d73a0 100644 (file)
@@ -78,8 +78,8 @@ bool PartSet_WidgetFeaturePointSelector::activateSelectionAndFilters(bool toActi
     std::vector<int> aColors;
     aColors = Config_PropManager::color("Visualization", "sketch_entity_color",
                                        SKETCH_ENTITY_COLOR);
-    aColor = Quantity_Color(aColors[0] / 255., aColors[1] / 255., aColors[2] / 255., Quantity_TOC_RGB);
-
+    aColor = Quantity_Color(aColors[0] / 255., aColors[1] / 255., aColors[2] / 255.,
+                            Quantity_TOC_RGB);
     myHighlightColor = aHStyle->Color();
     mySelectionColor = aSStyle->Color();
 
@@ -123,7 +123,8 @@ void PartSet_WidgetFeaturePointSelector::mouseMoved(ModuleBase_IViewWindow* theW
   ModuleBase_ISelection* aSelect = myWorkshop->selection();
   QList<ModuleBase_ViewerPrsPtr> aHighlighted = aSelect->getHighlighted();
 
-  ModuleBase_ViewerPrsPtr aPrs = !aHighlighted.empty() ? aHighlighted.first() : ModuleBase_ViewerPrsPtr();
+  ModuleBase_ViewerPrsPtr aPrs = !aHighlighted.empty() ? aHighlighted.first()
+                                                       : ModuleBase_ViewerPrsPtr();
   fillFeature(aPrs, theWindow, theEvent);
 }