Salome HOME
Fix for the problem:
[modules/shaper.git] / src / GeomValidators / GeomValidators_Positive.cpp
index 2087fd9abcac3c33a9d9adb76d46c7404b1925c0..139239be9aaac39a943194ec5d31c6f98d171eec 100644 (file)
@@ -48,7 +48,6 @@ bool GeomValidators_Positive::isValid(const AttributePtr& theAttribute,
   double aMinValue = 1.e-5;
   if(theArguments.size() == 1) {
     std::list<std::string>::const_iterator anIt = theArguments.begin();
-    char *aErr;
     double aValue = Config_PropManager::stringToDouble((*anIt).c_str());
     if(aValue != 0) {
       // very probably ok
@@ -64,7 +63,7 @@ bool GeomValidators_Positive::isValid(const AttributePtr& theAttribute,
       return false;
     }
     if (aDouble->value() <= aMinValue) {
-      theError = "Double is not positive.";
+      theError = "Value is too small.";
       return false;
     }
   }