From 87b28b232a6334b531e21aaf189e074ae6ef671c Mon Sep 17 00:00:00 2001 From: jfa Date: Wed, 3 Mar 2021 12:39:50 +0300 Subject: [PATCH] Fix error message to add missed blanc --- src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.2