]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Fix error message to add missed blanc
authorjfa <jfa@opencascade.com>
Wed, 3 Mar 2021 09:39:50 +0000 (12:39 +0300)
committerjfa <jfa@opencascade.com>
Wed, 3 Mar 2021 09:39:50 +0000 (12:39 +0300)
src/GeomAlgoAPI/GeomAlgoAPI_Tools.cpp

index 90a692aebffd11083a54b820fec4992bc796f0cd..905240030f66ab895adf807a9ec989a4e9da0c6b 100644 (file)
@@ -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;
   }