From: jfa Date: Wed, 3 Mar 2021 09:39:50 +0000 (+0300) Subject: Fix error message to add missed blanc X-Git-Tag: V9_7_0a1~26 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=87b28b232a6334b531e21aaf189e074ae6ef671c;p=modules%2Fshaper.git Fix error message to add missed blanc --- diff --git a/src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp b/src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp index 90a692aeb..905240030 100644 --- a/src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp +++ b/src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp @@ -76,14 +76,14 @@ bool AlgoError::isAlgorithmFailed(const GeomMakeShapePtr& theAlgorithm, if (!theAlgorithm->shape() || theAlgorithm->shape()->isNull()) { theError = "Error: Resulting shape"; if (!theFeature.empty()) - theError += "of " + theFeature; + theError += " of " + theFeature; theError += " is Null."; return true; } if (!theAlgorithm->isValid()) { theError = "Error: Resulting shape"; if (!theFeature.empty()) - theError += "of " + theFeature; + theError += " of " + theFeature; theError += " is not valid."; return true; }