Commit 58d8eae0 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@59957 954022d7-b5bf-4e40-9824-e11837661b57
parent d1943f6d
......@@ -1031,10 +1031,16 @@ CMathBase.prototype.Redo = function(Data)
};
CMathBase.prototype.Save_Changes = function(Data, Writer)
{
Writer.WriteLong(this.ClassType);
WriteChanges_ToBinary(Data, Writer);
};
CMathBase.prototype.Load_Changes = function(Reader)
{
var ClassType = Reader.GetLong();
if (this.ClassType !== ClassType)
return;
ReadChanges_FromBinary(Reader, this);
};
CMathBase.prototype.Get_AllFontNames = function(AllFonts)
......
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