From: LeonidBeynenson Date: Thu, 21 Feb 2013 16:10:42 +0000 (+0400) Subject: Changed error message in Algorithm::get. X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1314^2~1471^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfb644ac048020a030a13b6865432ebd3c9e329a;p=platform%2Fupstream%2Fopencv.git Changed error message in Algorithm::get. --- diff --git a/modules/core/src/algorithm.cpp b/modules/core/src/algorithm.cpp index 8d292a3..cebecd0 100644 --- a/modules/core/src/algorithm.cpp +++ b/modules/core/src/algorithm.cpp @@ -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) {