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

Исправлен баг с непроверкой орфографии в параграфе, после принятия изменений в...

Исправлен баг с непроверкой орфографии в параграфе, после принятия изменений в совместном редактировании (баг 19587). Исправлен баг с определением слова для проверки орфографии с метками совместного редактирования.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49479 954022d7-b5bf-4e40-9824-e11837661b57
parent 1fdbcaf1
...@@ -13071,6 +13071,7 @@ Paragraph.prototype = ...@@ -13071,6 +13071,7 @@ Paragraph.prototype =
} }
this.RecalcInfo.Set_Type_0(pararecalc_0_All); this.RecalcInfo.Set_Type_0(pararecalc_0_All);
this.RecalcInfo.Set_Type_0_Spell(pararecalc_0_Spell_All);
}, },
Write_ToBinary2 : function(Writer) Write_ToBinary2 : function(Writer)
......
...@@ -645,6 +645,8 @@ Paragraph.prototype.Internal_CheckPunctuationBreak = function(_Pos) ...@@ -645,6 +645,8 @@ Paragraph.prototype.Internal_CheckPunctuationBreak = function(_Pos)
{ {
return true; return true;
} }
else if ( para_CollaborativeChangesEnd === Item.Type || para_CollaborativeChangesStart === Item.Type )
continue;
else else
{ {
return false; return false;
...@@ -722,6 +724,8 @@ Paragraph.prototype.Continue_CheckSpelling = function() ...@@ -722,6 +724,8 @@ Paragraph.prototype.Continue_CheckSpelling = function()
nWordEnd = Pos; nWordEnd = Pos;
} }
} }
else if ( para_CollaborativeChangesEnd === Item.Type || para_CollaborativeChangesStart === Item.Type )
continue;
else else
{ {
if ( true === bWord ) if ( true === bWord )
...@@ -797,6 +801,8 @@ Paragraph.prototype.Continue_CheckSpelling = function() ...@@ -797,6 +801,8 @@ Paragraph.prototype.Continue_CheckSpelling = function()
nWordEnd = Pos; nWordEnd = Pos;
} }
} }
else if ( para_CollaborativeChangesEnd === Item.Type || para_CollaborativeChangesStart === Item.Type )
continue;
else else
{ {
if ( true === bWord ) if ( true === bWord )
......
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