Commit d540e0e4 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53506 954022d7-b5bf-4e40-9824-e11837661b57
parent 046f2be6
...@@ -20,6 +20,11 @@ ...@@ -20,6 +20,11 @@
map_color_scheme["tx2"] = 16; map_color_scheme["tx2"] = 16;
*/ */
//Типы изменений в классе CTheme
var historyitem_ChangeColorScheme = 0;
var historyitem_ChangeFontScheme = 1;
var historyitem_ChangeFmtScheme = 2;
function isRealObject(o) function isRealObject(o)
{ {
return o !== null && typeof o === "object"; return o !== null && typeof o === "object";
......
...@@ -1335,6 +1335,7 @@ function BinaryPPTYLoader() ...@@ -1335,6 +1335,7 @@ function BinaryPPTYLoader()
{ {
if (0 == s.GetUChar()) if (0 == s.GetUChar())
{ {
uni_color.Mods = new CColorModifiers()
uni_color.Mods.Mods = this.ReadColorModifiers(); uni_color.Mods.Mods = this.ReadColorModifiers();
} }
} }
...@@ -2004,6 +2005,7 @@ function BinaryPPTYLoader() ...@@ -2004,6 +2005,7 @@ function BinaryPPTYLoader()
uni_fill.fill = new CSolidFill(); uni_fill.fill = new CSolidFill();
uni_fill.fill.color = this.ReadUniColor(); uni_fill.fill.color = this.ReadUniColor();
uni_fill.fill.color.Mods = new CColorModifiers();
var mods = uni_fill.fill.color.Mods.Mods; var mods = uni_fill.fill.color.Mods.Mods;
var _len = mods.length; var _len = mods.length;
for (var i = 0; i < _len; i++) for (var i = 0; i < _len; i++)
......
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