include/LibreOfficeKit/LibreOfficeKit.hxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
New commits: commit 8dbdf538fea36748b5297299943e22b88ba62522 Author: Riccardo Magliocchetti <[email protected]> Date: Fri Jan 29 14:37:29 2016 +0100 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 <[email protected]> Reviewed-by: Miklos Vajna <[email protected]> diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx b/include/LibreOfficeKit/LibreOfficeKit.hxx index 1fbd784..7837904 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); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
