diff options
author | Mihai Varga <mihai.varga@collabora.com> | 2015-10-05 17:07:06 +0300 |
---|---|---|
committer | Mihai Varga <mihai.mv13@gmail.com> | 2015-10-05 17:50:20 +0300 |
commit | c30defcf8e34daec6ea0455d772fe296cc26ecc9 (patch) | |
tree | 59653c8c7ad6efa6fadc8bea63e4cc94bb2da483 /include | |
parent | 7949ca85c526f2f22367900b5213e8df806ce873 (diff) |
LOK: add the search phrase to the search result count callback
We need this to notify the user for which search phrase no results were
found
Change-Id: I8cc7ab235b9129dfdcb022145456180ff7e4ca92
Diffstat (limited to 'include')
-rw-r--r-- | include/LibreOfficeKit/LibreOfficeKitEnums.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitEnums.h b/include/LibreOfficeKit/LibreOfficeKitEnums.h index dc3e0f94f3dc..97c089ffef50 100644 --- a/include/LibreOfficeKit/LibreOfficeKitEnums.h +++ b/include/LibreOfficeKit/LibreOfficeKitEnums.h @@ -156,7 +156,11 @@ typedef enum * Payload is a single 0-based integer. */ LOK_CALLBACK_SET_PART, - /// Number of search results, in case something is found. + + /** + * Number of search results followed by the original searched phrase. + * count;phrase + */ LOK_CALLBACK_SEARCH_RESULT_COUNT } LibreOfficeKitCallbackType; |