diff options
-rw-r--r-- | desktop/source/lib/init.cxx | 5 | ||||
-rw-r--r-- | sfx2/source/control/unoctitm.cxx | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 60553a66488a..7048da7cd32c 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -1006,7 +1006,10 @@ static void doc_iniUnoCommands () OUString(".uno:StatePageNumber"), OUString(".uno:StateWordCount"), OUString(".uno:PageStyleName"), - OUString(".uno:SelectionMode") + OUString(".uno:SelectionMode"), + OUString(".uno:PageStatus"), + OUString(".uno:LayoutStatus"), + OUString(".uno:Context") }; util::URL aCommandURL; diff --git a/sfx2/source/control/unoctitm.cxx b/sfx2/source/control/unoctitm.cxx index 934c6b2bcb3c..116d7b6f3dfe 100644 --- a/sfx2/source/control/unoctitm.cxx +++ b/sfx2/source/control/unoctitm.cxx @@ -1039,7 +1039,10 @@ static void InterceptLOKStateChangeEvent(const SfxViewFrame* pViewFrame, const c aEvent.FeatureURL.Path == "StateTableCell" || aEvent.FeatureURL.Path == "StatePageNumber" || aEvent.FeatureURL.Path == "StateWordCount" || - aEvent.FeatureURL.Path == "PageStyleName") + aEvent.FeatureURL.Path == "PageStyleName" || + aEvent.FeatureURL.Path == "PageStatus" || + aEvent.FeatureURL.Path == "LayoutStatus" || + aEvent.FeatureURL.Path == "Context") { OUString aString; |