diff options
author | Oliver Specht <oliver.specht@cib.de> | 2016-01-20 07:52:51 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2016-01-20 07:41:17 +0000 |
commit | 23c2c7c9cb86db4a36f8a798e63402a053816ef2 (patch) | |
tree | 40b108139a4df32a27b0feba276f664216801d9f /include/LibreOfficeKit | |
parent | c116aafe38f264be29f415b74a968f6efa59a56a (diff) |
freeError function moved to the end of the list
Change-Id: I4aed102b25ddcd5f2e8fa03395e2ffd89c858bb9
Reviewed-on: https://gerrit.libreoffice.org/21619
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index 8057d75ccc50..80f8451633ac 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -51,7 +51,6 @@ struct _LibreOfficeKitClass const char* pURL); char* (*getError) (LibreOfficeKit* pThis); - void (*freeError) (const char *pfree); LibreOfficeKitDocument* (*documentLoadWithOptions) (LibreOfficeKit* pThis, const char* pURL, @@ -64,6 +63,8 @@ struct _LibreOfficeKitClass /// @see lok::Office::getFilterTypes(). char* (*getFilterTypes) (LibreOfficeKit* pThis); #endif + void (*freeError) (const char *pfree); + }; #define LIBREOFFICEKIT_DOCUMENT_HAS(pDoc,member) LIBREOFFICEKIT_HAS_MEMBER(LibreOfficeKitDocumentClass,member,(pDoc)->pClass->nSize) |