diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-14 11:37:27 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-14 11:53:31 +0200 |
commit | 4dbff9ece8599365d65feb98403266d23633cd79 (patch) | |
tree | fb8d131c46fd7472b2b520f741dc6fbe40acb32a /sfx2/source/control | |
parent | d01e4adfec33464594680140ce38c757885de343 (diff) |
SfxDispatchController_Impl::InterceptLOKStateChangeEvent: fix typo
Without this, the strikethrough event is not sent to LOK clients, i.e.
the strikethrough button in gtktiledviewer did not change to the toggled
state when the cursor entered an area marked as strikethrough.
Change-Id: I0b2d3acc50cdfff88675ceb14cf653b6622797e7
Diffstat (limited to 'sfx2/source/control')
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index f8c8ed0d220a..141fa1d5bc8a 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1054,7 +1054,7 @@ void SfxDispatchController_Impl::InterceptLOKStateChangeEvent(const SfxObjectShe if (aEvent.FeatureURL.Path == "Bold" || aEvent.FeatureURL.Path == "Italic" || aEvent.FeatureURL.Path == "Underline" || - aEvent.FeatureURL.Path == "StrikeOut") + aEvent.FeatureURL.Path == "Strikeout") { OUStringBuffer aBuffer; |