From 690f27cde078b45ef727686558c1ae4f3685ece9 Mon Sep 17 00:00:00 2001 From: azv Date: Mon, 10 Dec 2018 12:23:59 +0300 Subject: [PATCH] Fix line length <= 100 --- src/FeaturesPlugin/FeaturesPlugin_MultiTranslation.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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; } -- 2.39.2