Changed error message in Algorithm::get.
authorLeonidBeynenson <leonid.beynenson@itseez.com>
Thu, 21 Feb 2013 16:10:42 +0000 (20:10 +0400)
committerLeonidBeynenson <leonid.beynenson@itseez.com>
Thu, 21 Feb 2013 16:10:42 +0000 (20:10 +0400)
modules/core/src/algorithm.cpp

index 8d292a3..cebecd0 100644 (file)
@@ -611,7 +611,7 @@ static string getErrorMessageForWrongArgumentInGetter(string algoName, string pa
 
     if (paramType == Param::BOOLEAN)
     {
-        message += "so it should be get as integer, unsigned integer, uint64, boolean, float or double value, ";
+        message += "so it should be get as integer, unsigned integer, uint64, boolean, unsigned char, float or double value, ";
     }
     else if (paramType == Param::INT || paramType == Param::UNSIGNED_INT || paramType == Param::UINT64 || paramType == Param::UCHAR)
     {