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

Исправлен баг с дублированием коментариев (баг 28256).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64924 954022d7-b5bf-4e40-9824-e11837661b57
parent bda102f7
......@@ -2642,7 +2642,7 @@ PasteProcessor.prototype =
//проверка на возможность втавки в формулу
//TODO проверку на excel пеерсмотреть!!!!
oSelectedContent.On_EndCollectElements(this.oLogicDocument);
oSelectedContent.On_EndCollectElements(this.oLogicDocument, true);
if(!this.pasteInExcel && !this.oLogicDocument.Can_InsertContent(oSelectedContent, NearPos))
{
if(!this.pasteInExcel)
......
......@@ -123,7 +123,7 @@ CSelectedContent.prototype =
this.MoveDrawing = Value;
},
On_EndCollectElements : function(LogicDocument)
On_EndCollectElements : function(LogicDocument, bFromCopy)
{
// Теперь пройдемся по всем найденным элементам и выясним есть ли автофигуры и комментарии
var Count = this.Elements.length;
......@@ -195,6 +195,8 @@ CSelectedContent.prototype =
}
}
if (true !== bFromCopy)
{
// Новые комментарии мы дублируем и добавляем в список комментариев
Count = NewComments.length;
var Count2 = this.Comments.length;
......@@ -226,6 +228,7 @@ CSelectedContent.prototype =
}
}
}
}
};
function CDocumentRecalculateState()
......@@ -9003,7 +9006,7 @@ CDocument.prototype =
}
}
SelectedContent.On_EndCollectElements(this);
SelectedContent.On_EndCollectElements(this, false);
if (!bUseHistory)
History.TurnOn();
......
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