diff options
author | Jan Holesovsky <kendy@collabora.com> | 2017-12-11 22:46:43 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2018-03-19 18:22:48 +0100 |
commit | 6c2e4b312db558778cdb64a99fbb613c0da6c850 (patch) | |
tree | 0429a103c5a822b99da9f9601f53aab6061b42aa /include/LibreOfficeKit | |
parent | e8d9a2fa879548259306ae6843638a59551eab62 (diff) |
Fix binary incompatible change in the LOK API + add unit test.
Change-Id: I53cb40ea351bf56b1a299857a59ae4bf7c6b6dc3
Reviewed-on: https://gerrit.libreoffice.org/46272
Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Tested-by: Marco Cecchetti <mrcekets@gmail.com>
Tested-by: Jenkins <ci@libreoffice.org>
(cherry picked from commit dcba1752892cb22e3f4b63e7d648931f7cb5f89b)
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index f9c9e22a730e..ed8b295b3f09 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -228,9 +228,6 @@ struct _LibreOfficeKitDocumentClass /// @see lok::Document::setVisibleArea). void (*setClientVisibleArea) (LibreOfficeKitDocument* pThis, int nX, int nY, int nWidth, int nHeight); - /// @see lok::Document::setOutlineState). - void (*setOutlineState) (LibreOfficeKitDocument* pThis, bool bColumn, int nLevel, int nIndex, bool bHidden); - /// @see lok::Document::createView(). int (*createView) (LibreOfficeKitDocument* pThis); /// @see lok::Document::destroyView(). @@ -270,6 +267,9 @@ struct _LibreOfficeKitDocumentClass int* pArray, size_t nSize); + /// @see lok::Document::setOutlineState). + void (*setOutlineState) (LibreOfficeKitDocument* pThis, bool bColumn, int nLevel, int nIndex, bool bHidden); + /// Paints window with given id to the buffer /// @see lok::Document::paintWindow(). void (*paintWindow) (LibreOfficeKitDocument* pThis, unsigned nWindowId, |