Commit 9d4a89dc authored by Oleg Korshul's avatar Oleg Korshul Committed by Alexander.Trofimov

ole

parent bb0ae855
...@@ -14,7 +14,7 @@ function (window, undefined) { ...@@ -14,7 +14,7 @@ function (window, undefined) {
this.Id = AscCommon.g_oIdCounter.Get_NewId(); this.Id = AscCommon.g_oIdCounter.Get_NewId();
AscCommon.g_oTableId.Add( this, this.Id ); AscCommon.g_oTableId.Add( this, this.Id );
} }
AscCommon.extendClass(COleObject, CImageShape); AscCommon.extendClass(COleObject, AscFormat.CImageShape);
COleObject.prototype.getObjectType = function() COleObject.prototype.getObjectType = function()
{ {
......
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
this.current = null; this.current = null;
this.path = ""; this.path = "";
this.api = null; this.api = null;
this.startData = "";
} }
CPluginsManager.prototype = CPluginsManager.prototype =
...@@ -32,6 +34,7 @@ ...@@ -32,6 +34,7 @@
if (this.current == null) if (this.current == null)
return false; return false;
this.startData = data;
this.show(); this.show();
}, },
runResize : function(guid, data, width, height) runResize : function(guid, data, width, height)
...@@ -128,7 +131,7 @@ ...@@ -128,7 +131,7 @@
} }
case Asc.EPluginDataType.ole: case Asc.EPluginDataType.ole:
{ {
_data = ""; // TODO: _data = this.startData;
break; break;
} }
} }
......
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