diff options
author | Henry Castro <hcastro@collabora.com> | 2016-07-02 23:25:28 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2016-07-03 03:58:52 +0000 |
commit | f41c20dc2384ba7765278adce0cd817781beb43a (patch) | |
tree | de11905793f0ae9a0bc73928015340f00b702e0b /sfx2/source | |
parent | 7e3e55c39e0f01321aee9875f55627f4eefcec27 (diff) |
sw lok: add status bar UNO commands
Change-Id: I4ffa3a3e07d00cfac48e67a0c32e85de0eda803d
Reviewed-on: https://gerrit.libreoffice.org/26876
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 171155308fc8..934c6b2bcb3c 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1023,7 +1023,8 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c } else if (aEvent.FeatureURL.Path == "AssignLayout" || aEvent.FeatureURL.Path == "StatusSelectionMode" || - aEvent.FeatureURL.Path == "Signature") + aEvent.FeatureURL.Path == "Signature" || + aEvent.FeatureURL.Path == "SelectionMode") { sal_Int32 aInt32; @@ -1035,7 +1036,10 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c else if (aEvent.FeatureURL.Path == "StatusDocPos" || aEvent.FeatureURL.Path == "RowColSelCount" || aEvent.FeatureURL.Path == "StatusPageStyle" || - aEvent.FeatureURL.Path == "StateTableCell") + aEvent.FeatureURL.Path == "StateTableCell" || + aEvent.FeatureURL.Path == "StatePageNumber" || + aEvent.FeatureURL.Path == "StateWordCount" || + aEvent.FeatureURL.Path == "PageStyleName") { OUString aString; |