summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorHenry Castro <hcastro@collabora.com>2019-04-11 14:22:15 -0400
committerJan Holesovsky <kendy@collabora.com>2019-04-25 21:37:59 +0200
commit33191f604756bbfde04eea9a85fd7ac283c6eceb (patch)
tree0c87eebc1ec017e6027e58e0500a0118bde47c4b /desktop
parente884223505535d497bb5c7cd96dd17daaf4c415c (diff)
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@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/70665 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/lib/init.cxx3
1 files changed, 2 insertions, 1 deletions
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!");