From: azv Date: Mon, 10 Dec 2018 09:23:59 +0000 (+0300) Subject: Fix line length <= 100 X-Git-Tag: End2018~92 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=690f27cde078b45ef727686558c1ae4f3685ece9;p=modules%2Fshaper.git Fix line length <= 100 --- diff --git a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp index 4657f8e0a..d0e5360c4 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp @@ -190,7 +190,8 @@ void FeaturesPlugin_MultiTranslation::performOneDirection() aTranslationAlgo->build(); // Checking that the algorithm worked properly. - if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed(aTranslationAlgo, getKind(), anError)) { + if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed( + aTranslationAlgo, getKind(), anError)) { setError(anError); break; } @@ -391,7 +392,8 @@ void FeaturesPlugin_MultiTranslation::performTwoDirection() aTranslationAlgo->build(); // Checking that the algorithm worked properly. - if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed(aTranslationAlgo, getKind(), anError)) { + if (GeomAlgoAPI_Tools::AlgoError::isAlgorithmFailed( + aTranslationAlgo, getKind(), anError)) { setError(anError); break; }