diff options
author | Jim Raykowski <raykowj@gmail.com> | 2020-09-18 01:32:01 -0800 |
---|---|---|
committer | Jim Raykowski <raykowj@gmail.com> | 2020-12-09 10:29:58 +0100 |
commit | c81fea2e78d66c1978cb2340868c938ba9d6c9f1 (patch) | |
tree | 9bdf48d96f7a2b14f517c5462f21a1fa4f3e46af /sfx2 | |
parent | ac398a5d419dc77ad50d2ddbc10cb53edf5fb492 (diff) |
tdf#89709 Make statusbar page number/bookmarks control tooltip show
Change-Id: I3a84ae29d4758799e1ee7e2ab1349ca3b30fb5f1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102883
Tested-by: Jenkins
Reviewed-by: Jim Raykowski <raykowj@gmail.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 68d97a8edf5b..49b2486cd8cd 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1212,7 +1212,6 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, SfxViewFrame* pViewFra aEvent.FeatureURL.Path == "RowColSelCount" || aEvent.FeatureURL.Path == "StatusPageStyle" || aEvent.FeatureURL.Path == "StateTableCell" || - aEvent.FeatureURL.Path == "StatePageNumber" || aEvent.FeatureURL.Path == "StateWordCount" || aEvent.FeatureURL.Path == "PageStyleName" || aEvent.FeatureURL.Path == "PageStatus" || @@ -1272,7 +1271,8 @@ static void InterceptLOKStateChangeEvent(sal_uInt16 nSID, SfxViewFrame* pViewFra aBuffer.append(OUString::number(aSize.Width)).append(" x ").append(OUString::number(aSize.Height)); } } - else if (aEvent.FeatureURL.Path == "LanguageStatus") + else if (aEvent.FeatureURL.Path == "LanguageStatus" || + aEvent.FeatureURL.Path == "StatePageNumber") { css::uno::Sequence< OUString > aSeq; |