diff options
author | Jan Holesovsky <kendy@collabora.com> | 2016-04-21 19:04:58 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2016-04-21 19:10:02 +0200 |
commit | b74163742ff1288ad9ea1ec8e83ac08faf686893 (patch) | |
tree | 09238cf368422d194123d5e03cc48a69c763a522 /include | |
parent | 74e9456c6d7c43739c3e57640e52b3f851c4f558 (diff) |
lok: getPartHash should be at the end, it is a new API call.
Also add it to the init.cxx so that it is actually used.
Change-Id: I255411158d0822718116ac05aad1ee925a9a7a9a
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index 863e377d6784..1281a2182b25 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -118,10 +118,6 @@ struct _LibreOfficeKitDocumentClass char* (*getPartName) (LibreOfficeKitDocument* pThis, int nPart); - /// @see lok::Document::getPartHash(). - char* (*getPartHash) (LibreOfficeKitDocument* pThis, - int nPart); - /// @see lok::Document::setPartMode(). void (*setPartMode) (LibreOfficeKitDocument* pThis, int nMode); @@ -228,6 +224,10 @@ struct _LibreOfficeKitDocumentClass const char* pFontName, int* pFontWidth, int* pFontHeight); + + /// @see lok::Document::getPartHash(). + char* (*getPartHash) (LibreOfficeKitDocument* pThis, + int nPart); #endif // defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY }; |