diff options
Diffstat (limited to 'include/LibreOfficeKit/LibreOfficeKit.h')
-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 110d4d58f8c8..a337bc319168 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -209,13 +209,13 @@ struct _LibreOfficeKitDocumentClass void (*setClientVisibleArea) (LibreOfficeKitDocument* pThis, int nX, int nY, int nWidth, int nHeight); /// @see lok::Document::createView(). - int (*createView) (LibreOfficeKitDocument* pThis); + uintptr_t (*createView) (LibreOfficeKitDocument* pThis); /// @see lok::Document::destroyView(). - void (*destroyView) (LibreOfficeKitDocument* pThis, int nId); + void (*destroyView) (LibreOfficeKitDocument* pThis, uintptr_t nId); /// @see lok::Document::setView(). - void (*setView) (LibreOfficeKitDocument* pThis, int nId); + void (*setView) (LibreOfficeKitDocument* pThis, uintptr_t nId); /// @see lok::Document::getView(). - int (*getView) (LibreOfficeKitDocument* pThis); + uintptr_t (*getView) (LibreOfficeKitDocument* pThis); /// @see lok::Document::getViews(). int (*getViews) (LibreOfficeKitDocument* pThis); |