From 8dbdf538fea36748b5297299943e22b88ba62522 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Fri, 29 Jan 2016 14:37:29 +0100 Subject: LibreOfficeKit: document availability of some LibreOfficeKit C++ API As done for C version in 80d1c914524bc61402c0e257b59377c5e47231ce Change-Id: I879e070bc6a7cbf851594d748f603090f2e02459 Reviewed-on: https://gerrit.libreoffice.org/21901 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- include/LibreOfficeKit/LibreOfficeKit.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx b/include/LibreOfficeKit/LibreOfficeKit.hxx index 1fbd78425273..7837904e493d 100644 --- a/include/LibreOfficeKit/LibreOfficeKit.hxx +++ b/include/LibreOfficeKit/LibreOfficeKit.hxx @@ -428,6 +428,7 @@ public: * * @param pUrl the URL of the document to load * @param pFilterOptions options for the import filter, e.g. SkipImages. + * @since pFilterOptions argument added in LibreOffice 5.0 */ inline Document* documentLoad(const char* pUrl, const char* pFilterOptions = NULL) { @@ -450,7 +451,11 @@ public: return mpThis->pClass->getError(mpThis); } - /// Frees the memory pointed to by pFree. + /** + * Frees the memory pointed to by pFree. + * + * @since LibreOffice 5.2 + */ inline void freeError(char* pFree) { mpThis->pClass->freeError(pFree); -- cgit