X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Translation.cpp;h=c3931387cf2de04422574dc778d6052237958fc7;hb=fb54db5e1466b16dfc029c4a7364a67a9a6a8c24;hp=41a93ddba767bfc57799a41b1967e4a253ee333c;hpb=bbda7e734357dc8f5e16ab7affb48f75e6e8e3c6;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Translation.cpp b/src/FeaturesPlugin/FeaturesPlugin_Translation.cpp index 41a93ddba..c3931387c 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Translation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Translation.cpp @@ -93,17 +93,17 @@ void FeaturesPlugin_Translation::execute() // Checking that the algorithm worked properly. if(!aTranslationAlgo.isDone()) { - static const std::string aFeatureError = "Translation algorithm failed"; + static const std::string aFeatureError = "Error: Translation algorithm failed."; setError(aFeatureError); break; } if(aTranslationAlgo.shape()->isNull()) { - static const std::string aShapeError = "Resulting shape is Null"; + static const std::string aShapeError = "Error: Resulting shape is Null."; setError(aShapeError); break; } if(!aTranslationAlgo.isValid()) { - std::string aFeatureError = "Warning: resulting shape is not valid"; + std::string aFeatureError = "Error: Resulting shape is not valid."; setError(aFeatureError); break; }