diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-20 13:12:08 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-20 13:14:44 +0200 |
commit | 7edd92c5576cc358815eb21634b3c27a43990c20 (patch) | |
tree | ff6b3fef1be2a5efe349003811a266d0520c89ac /include/LibreOfficeKit | |
parent | 3925b8acf75aaea98894602542d907cfdf0b922d (diff) |
Drop paintTile's row stride output parameter that nobody is interested in
Change-Id: I166b4b713c2ea52c62c52045bb2073b6d84c1547
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 1 | ||||
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.hxx | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index 85f760c1df5c..98aa24de469c 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -97,7 +97,6 @@ struct _LibreOfficeKitDocumentClass unsigned char* pBuffer, const int nCanvasWidth, const int nCanvasHeight, - int* pRowStride, const int nTilePosX, const int nTilePosY, const int nTileWidth, diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx b/include/LibreOfficeKit/LibreOfficeKit.hxx index 1d7d7096c149..25d8980faa1a 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.hxx +++ b/include/LibreOfficeKit/LibreOfficeKit.hxx @@ -73,13 +73,12 @@ public: unsigned char* pBuffer, const int nCanvasWidth, const int nCanvasHeight, - int* pRowStride, const int nTilePosX, const int nTilePosY, const int nTileWidth, const int nTileHeight) { - return mpDoc->pClass->paintTile(mpDoc, pBuffer, nCanvasWidth, nCanvasHeight, pRowStride, + return mpDoc->pClass->paintTile(mpDoc, pBuffer, nCanvasWidth, nCanvasHeight, nTilePosX, nTilePosY, nTileWidth, nTileHeight); } |