Commit 16abeb40 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлены баги с проверке орфографии: иногда не проверялись слова и не...

Исправлены баги с проверке орфографии: иногда не проверялись слова и не пропадало подчеркивание в изменяемом слове.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55049 954022d7-b5bf-4e40-9824-e11837661b57
parent 38399073
......@@ -613,15 +613,24 @@ CParaSpellChecker.prototype =
if ( false === OldElement.Checked )
{
var bFound = false;
for ( var Index2 = 0; Index2 < ElementsCount; Index2++ )
{
var Element = this.Elements[Index2];
if ( Word === Element.Word && false !== Element.Checked )
if ( Word === Element.Word )
{
return true;
bFound = true;
if ( false !== Element.Checked )
return true;
break;
}
}
if ( false === bFound )
return true;
}
}
......
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