summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorPranav Kant <pranavk@collabora.co.uk>2018-02-13 19:55:48 +0530
committerAndras Timar <andras.timar@collabora.com>2018-02-13 15:52:34 +0100
commit41db188ded84e1d3b5a56513663c4b8ad28d4f0f (patch)
tree7dab4f7fe50d5558fff251b06e2755f9d46bae32 /sc
parent5f84c096edff526d8c5f0c603c1f5344d4d45525 (diff)
lok IME: VclEventId does not exist
Change-Id: I7fc6cb50043eb9be6a9e53daac7edc8038dc04df Reviewed-on: https://gerrit.libreoffice.org/49661 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/unoobj/docuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx
index fafd3b466102..fc7c6407915c 100644
--- a/sc/source/ui/unoobj/docuno.cxx
+++ b/sc/source/ui/unoobj/docuno.cxx
@@ -630,10 +630,10 @@ void ScModelObj::postExtTextInputEvent(int nType, const OUString& rText)
switch (nType)
{
case LOK_EXT_TEXTINPUT:
- pWindow->PostExtTextInputEvent(VclEventId::ExtTextInput, rText);
+ pWindow->PostExtTextInputEvent(VCLEVENT_WINDOW_EXTTEXTINPUT, rText);
break;
case LOK_EXT_TEXTINPUT_END:
- pWindow->PostExtTextInputEvent(VclEventId::EndExtTextInput, "");
+ pWindow->PostExtTextInputEvent(VCLEVENT_WINDOW_ENDEXTTEXTINPUT, "");
break;
default:
assert(false && "Unhandled External Text input event!");