Commit 225a4aa4 authored by Ilya Kirillov's avatar Ilya Kirillov

Fixed bug #35304

parent d1718df1
...@@ -355,7 +355,7 @@ CDocumentContentBase.prototype.private_Remove = function(Count, bOnlyText, bRemo ...@@ -355,7 +355,7 @@ CDocumentContentBase.prototype.private_Remove = function(Count, bOnlyText, bRemo
// Если есть параграфы, которые были добавлены во время рецензирования, тогда мы их удаляем // Если есть параграфы, которые были добавлены во время рецензирования, тогда мы их удаляем
for (var Index = StartPos; Index <= EndPos; Index++) for (var Index = StartPos; Index <= EndPos; Index++)
{ {
this.Content[Index].Remove(1, true); this.Content[Index].Remove(1, true, bRemoveOnlySelection, bOnTextAdd);
} }
this.RemoveSelection(); this.RemoveSelection();
......
...@@ -1789,14 +1789,14 @@ CHeaderFooterController.prototype = ...@@ -1789,14 +1789,14 @@ CHeaderFooterController.prototype =
return false; return false;
}, },
Is_UseInDocument : function(Id) Is_UseInDocument : function(Id)
{ {
var HdrFtr = g_oTableId.Get_ById( Id ); var HdrFtr = g_oTableId.Get_ById(Id);
if ( -1 === this.LogicDocument.SectionsInfo.Find_ByHdrFtr( HdrFtr ) ) if (-1 === this.LogicDocument.SectionsInfo.Find_ByHdrFtr(HdrFtr))
return false; return false;
return true; return true;
}, },
Check_Page : function(HdrFtr, PageIndex) Check_Page : function(HdrFtr, PageIndex)
{ {
......
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