summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRiccardo Magliocchetti <riccardo.magliocchetti@gmail.com>2016-01-29 14:37:29 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-02-04 12:57:15 +0000
commit8dbdf538fea36748b5297299943e22b88ba62522 (patch)
tree31cb2782a7e3dcfa4af6246e11efe148bedf1a4b /include
parent9108dc39525fb1d881d5b4a634039a25ef2d2d25 (diff)
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 <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/LibreOfficeKit/LibreOfficeKit.hxx7
1 files changed, 6 insertions, 1 deletions
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);