Commit 1d37d0ec 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@66552 954022d7-b5bf-4e40-9824-e11837661b57
parent 5efccac4
......@@ -693,7 +693,7 @@ CDocumentFieldsManager.prototype.Restore_MailMergeTemplate = function()
}
};
function CDocument(DrawingDocument)
function CDocument(DrawingDocument, isMainLogicDocument)
{
// Сохраняем ссылки на глобальные объекты
this.History = History;
......@@ -702,7 +702,7 @@ function CDocument(DrawingDocument)
this.CollaborativeEditing = (("undefined" !== typeof(CWordCollaborativeEditing) && CollaborativeEditing instanceof CWordCollaborativeEditing) ? CollaborativeEditing : null);
this.Api = editor;
//------------------------------------------------------------------------
if (DrawingDocument)
if (false !== isMainLogicDocument)
{
if (this.History)
this.History.Set_LogicDocument(this);
......
......@@ -302,7 +302,7 @@ CDocument.prototype.Get_MailMergedDocument = function(_nStartIndex, _nEndIndex)
History.TurnOff();
g_oTableId.TurnOff();
var LogicDocument = new CDocument();
var LogicDocument = new CDocument(undefined, false);
History.Document = this;
// Копируем стили, они все одинаковые для всех документов
......
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