diff options
author | Henry Castro <hcastro@collabora.com> | 2019-04-11 14:22:15 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2019-04-12 15:26:56 +0200 |
commit | c36e7f44c2e1b97d9073560a1734d3f6628ac85a (patch) | |
tree | c6b4ce6466f8b28921be38561c1a6c400c7ae2f4 /desktop | |
parent | 39f6b78a748cfdfe7a2b5d897f70dba3ed8c4102 (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>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 7de8d605745f..6830aa698e79 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -2760,7 +2760,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!"); |