Commit 5738cfd8 authored by Alexey.Musinov's avatar Alexey.Musinov

for iOS

parent 82ccad7c
This diff is collapsed.
...@@ -462,7 +462,7 @@ CDrawingStreamSerializer.prototype["PD_EndShapeDraw"] = function() ...@@ -462,7 +462,7 @@ CDrawingStreamSerializer.prototype["PD_EndShapeDraw"] = function()
{ {
this.Memory.push(71); this.Memory.push(71);
}; };
CDrawingStreamSerializer.prototype["PD_put_BrushTextute"] = function(id, l, t, r, b) CDrawingStreamSerializer.prototype["PD_put_BrushTexture"] = function(id, l, t, r, b)
{ {
if (l === undefined) if (l === undefined)
{ {
...@@ -1271,4 +1271,4 @@ CDrawingStream.prototype = ...@@ -1271,4 +1271,4 @@ CDrawingStream.prototype =
{ {
return this.Native["PD_DrawPresentationComment"](type, x, y, w, h); return this.Native["PD_DrawPresentationComment"](type, x, y, w, h);
} }
}; };
\ No newline at end of file
...@@ -663,11 +663,11 @@ CShapeDrawer.prototype = ...@@ -663,11 +663,11 @@ CShapeDrawer.prototype =
case Asc.c_oAscFill.FILL_TYPE_BLIP: case Asc.c_oAscFill.FILL_TYPE_BLIP:
{ {
if (!_fill.srcRect) if (!_fill.srcRect)
this.NativeGraphics["PD_put_BrushTextute"](_fill.RasterImageId); this.NativeGraphics["PD_put_BrushTexture"](_fill.RasterImageId);
else else
{ {
var _sR = _fill.srcRect; var _sR = _fill.srcRect;
this.NativeGraphics["PD_put_BrushTextute"](_fill.RasterImageId, _sR.l, _sR.t, _sR.r, _sR.b); this.NativeGraphics["PD_put_BrushTexture"](_fill.RasterImageId, _sR.l, _sR.t, _sR.r, _sR.b);
} }
this.NativeGraphics["PD_put_BrushTextureMode"]((null == _fill.tile) ? 1 : 2); this.NativeGraphics["PD_put_BrushTextureMode"]((null == _fill.tile) ? 1 : 2);
......
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