From: Clarisse Genrault Date: Thu, 9 Mar 2017 13:01:16 +0000 (+0100) Subject: Fix bug (google style). X-Git-Tag: V_2.7.0~243^2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e5c2e689285bea782e4cf1cdbfcc8bcdf40ae0fc;p=modules%2Fshaper.git Fix bug (google style). --- diff --git a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp index 7b131b9aa..4112b4ace 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp @@ -161,7 +161,8 @@ void FeaturesPlugin_MultiTranslation::performOneDirection() aListOfShape.push_back(aTranslationAlgo->shape()); aListOfTranslationAlgo.push_back(aTranslationAlgo); } - std::shared_ptr aCompound = GeomAlgoAPI_CompoundBuilder::compound(aListOfShape); + std::shared_ptr aCompound = + GeomAlgoAPI_CompoundBuilder::compound(aListOfShape); ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex); aResultBody->storeModified(aBaseShape, aCompound); loadNamingDS(aListOfTranslationAlgo, aResultBody, aBaseShape); @@ -311,7 +312,8 @@ void FeaturesPlugin_MultiTranslation::performTwoDirection() aListOfTranslationAlgo.push_back(aTranslationAlgo); } } - std::shared_ptr aCompound = GeomAlgoAPI_CompoundBuilder::compound(aListOfShape); + std::shared_ptr aCompound = + GeomAlgoAPI_CompoundBuilder::compound(aListOfShape); ResultBodyPtr aResultBody = document()->createBody(data(), aResultIndex); aResultBody->storeModified(aBaseShape, aCompound); loadNamingDS(aListOfTranslationAlgo, aResultBody, aBaseShape);