From: vsv Date: Wed, 9 Jan 2019 14:43:28 +0000 (+0300) Subject: Fix line length issue X-Git-Tag: Jan2019~35 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=79099cce04bb946f2cd5152aa1f4df67eaebe181;p=modules%2Fshaper.git Fix line length issue --- diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index 8eb1c1261..16b1ecb65 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -698,7 +698,8 @@ Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const ModuleBase_IViewer::DefaultHighlightDrawer = aContext->HighlightStyle(); Handle(Prs3d_Drawer) aSelStyle = aContext->SelectionStyle(); - double aDeflection = QString(ModelAPI_ResultConstruction::DEFAULT_DEFLECTION().c_str()).toDouble(); + double aDeflection = + QString(ModelAPI_ResultConstruction::DEFAULT_DEFLECTION().c_str()).toDouble(); try { aDeflection = Config_PropManager::real("Visualization", "construction_deflection"); } catch (...) {}