From: nds Date: Wed, 15 Mar 2017 04:52:38 +0000 (+0300) Subject: #2027 Sketcher Trim feature - linux compilation correction: 100 symbols in a row X-Git-Tag: V_2.7.0~227^2~3 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=d532cfc0dc309ac50f1077d4134398d2f1d563d8;p=modules%2Fshaper.git #2027 Sketcher Trim feature - linux compilation correction: 100 symbols in a row --- diff --git a/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp b/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp index 78fcaf12a..50d0ea081 100644 --- a/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp +++ b/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp @@ -78,8 +78,8 @@ bool PartSet_WidgetFeaturePointSelector::activateSelectionAndFilters(bool toActi std::vector 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 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); }