diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2018-02-01 12:17:45 +0100 |
---|---|---|
committer | Marco Cecchetti <mrcekets@gmail.com> | 2018-04-03 21:39:05 +0200 |
commit | 8ffbb86b30e2c1674ba32e9e29447cbea3585d03 (patch) | |
tree | 96119c2f2bad71aa7d39f75774a4a7719e70baae /include | |
parent | 866112dba79b677dfefd35f19933c5aa3f338967 (diff) |
lok - calc: add support for show/hide tabs in online
Change-Id: Ibd061414a0c3a5fad83d03f7047831cef62076d2
Reviewed-on: https://gerrit.libreoffice.org/49083
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Marco Cecchetti <mrcekets@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKit.h | 3 | ||||
-rw-r--r-- | include/vcl/ITiledRenderable.hxx | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h b/include/LibreOfficeKit/LibreOfficeKit.h index d465d541b0e0..0799584d3097 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.h +++ b/include/LibreOfficeKit/LibreOfficeKit.h @@ -306,6 +306,9 @@ struct _LibreOfficeKitDocumentClass int nType, const char* pText); + /// @see lok::Document::getPartInfo(). + char* (*getPartInfo) (LibreOfficeKitDocument* pThis, int nPart); + #endif // defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY }; diff --git a/include/vcl/ITiledRenderable.hxx b/include/vcl/ITiledRenderable.hxx index e25cdd67506a..0b6b52373316 100644 --- a/include/vcl/ITiledRenderable.hxx +++ b/include/vcl/ITiledRenderable.hxx @@ -360,6 +360,15 @@ public: { return OUString(); } + + /* + * Used for sheets in spreadsheet documents. + */ + virtual OUString getPartInfo(int /*nPart*/) + { + return OUString(); + } + }; } // namespace vcl |