From 4dbff9ece8599365d65feb98403266d23633cd79 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 14 Apr 2015 11:37:27 +0200 Subject: 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 --- sfx2/source/control/unoctitm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfx2/source/control') 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; -- cgit