X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FFeaturesPlugin_Rotation.cpp;h=3d3076ab5d085516c6cce484a267717f3b2c636f;hb=fb54db5e1466b16dfc029c4a7364a67a9a6a8c24;hp=0423ac8afc8c7513376c8d50468bcb6c2f5fd31b;hpb=95eaef2c17309c871072a4cfb98f2df39badb48e;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp b/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp index 0423ac8af..3d3076ab5 100755 --- a/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Rotation.cpp @@ -90,17 +90,17 @@ void FeaturesPlugin_Rotation::execute() // Checking that the algorithm worked properly. if(!aRotationAlgo.isDone()) { - static const std::string aFeatureError = "Rotation algorithm failed"; + static const std::string aFeatureError = "Error: Rotation algorithm failed."; setError(aFeatureError); break; } if(aRotationAlgo.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(!aRotationAlgo.isValid()) { - std::string aFeatureError = "Warning: resulting shape is not valid"; + std::string aFeatureError = "Error: Resulting shape is not valid."; setError(aFeatureError); break; }