[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - desktop/source
Henry Castro (via logerrit)
logerrit at kemper.freedesktop.org
Thu Apr 25 19:38:41 UTC 2019
desktop/source/lib/init.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 33191f604756bbfde04eea9a85fd7ac283c6eceb
Author: Henry Castro <hcastro at collabora.com>
AuthorDate: Thu Apr 11 14:22:15 2019 -0400
Commit: Jan Holesovsky <kendy at collabora.com>
CommitDate: Thu Apr 25 21:37:59 2019 +0200
lok: add missing parameter to PostExtTextInputEvent function
Change-Id: I91fbfd97da0c4ad1ad90710ab781c71ca99367e5
Reviewed-on: https://gerrit.libreoffice.org/70609
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro at collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/70665
Reviewed-by: Jan Holesovsky <kendy at collabora.com>
Tested-by: Jan Holesovsky <kendy at collabora.com>
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index ece913b25e80..35943999d12b 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -2839,7 +2839,8 @@ static void doc_postWindowExtTextInputEvent(LibreOfficeKitDocument* pThis, unsig
OUString::fromUtf8(OString(pText, strlen(pText))));
break;
case LOK_EXT_TEXTINPUT_END:
- pWindow->PostExtTextInputEvent(VclEventId::EndExtTextInput, "");
+ pWindow->PostExtTextInputEvent(VclEventId::EndExtTextInput,
+ OUString::fromUtf8(OString(pText, strlen(pText))));
break;
default:
assert(false && "Unhandled External Text input event!");
More information about the Libreoffice-commits
mailing list