Commit 3f9b02d6 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov

fix: Bug 30247 - Введенный диапазон в качестве аргумента lookup_value в...

fix: Bug 30247 - Введенный диапазон в качестве аргумента lookup_value в формуле MATCH возвращает неверную ошибку (http://bugzserver/show_bug.cgi?id=30247)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@65066 954022d7-b5bf-4e40-9824-e11837661b57
parent 7fad9300
......@@ -861,7 +861,7 @@ cMATCH.prototype.Calculate = function ( arg ) {
}
if ( arg0 instanceof cArea3D || arg0 instanceof cArray || arg0 instanceof cArea ) {
return this.value = new cError( cErrorType.not_available );
return this.value = new cError( cErrorType.wrong_value_type );
}
else if ( arg0 instanceof cError ) {
return this.value = arg0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment