[Libreoffice-commits] online.git: Branch 'distro/collabora/collabora-online-3-0' - bundled/include
Andras Timar
andras.timar at collabora.com
Thu Feb 15 22:02:18 UTC 2018
bundled/include/LibreOfficeKit/LibreOfficeKit.h | 1 +
bundled/include/LibreOfficeKit/LibreOfficeKit.hxx | 6 ++++--
2 files changed, 5 insertions(+), 2 deletions(-)
New commits:
commit f96d59cc023aeb15f1468082c4ab79392e007900
Author: Andras Timar <andras.timar at collabora.com>
Date: Thu Feb 15 23:01:26 2018 +0100
Update bundled LOK headers
Change-Id: I526d3a4207f1721761a3877f50d8580aab840b7c
diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKit.h b/bundled/include/LibreOfficeKit/LibreOfficeKit.h
index bb99e04a..2af965e4 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKit.h
@@ -291,6 +291,7 @@ struct _LibreOfficeKitDocumentClass
/// @see lok::Document::postExtTextInputEvent
void (*postExtTextInputEvent) (LibreOfficeKitDocument* pThis,
+ unsigned nWindowId,
int nType,
const char* pText);
diff --git a/bundled/include/LibreOfficeKit/LibreOfficeKit.hxx b/bundled/include/LibreOfficeKit/LibreOfficeKit.hxx
index c076c0f0..fabd3b29 100644
--- a/bundled/include/LibreOfficeKit/LibreOfficeKit.hxx
+++ b/bundled/include/LibreOfficeKit/LibreOfficeKit.hxx
@@ -539,12 +539,14 @@ public:
/**
* Post the text input from external input window, like IME
*
+ * @param nWindowId Specify the window id to post the input event to. If
+ * nWindow is 0, the event is posted into the document
* @param nType see LibreOfficeKitExtTextInputType
* @param pText Text for LOK_EXT_TEXTINPUT
*/
- void postExtTextInputEvent(int nType, const char* pText)
+ void postExtTextInputEvent(unsigned nWindowId, int nType, const char* pText)
{
- mpDoc->pClass->postExtTextInputEvent(mpDoc, nType, pText);
+ mpDoc->pClass->postExtTextInputEvent(mpDoc, nWindowId, nType, pText);
}
#endif // defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
More information about the Libreoffice-commits
mailing list