diff options
author | Yousuf Philips <philipz85@hotmail.com> | 2017-04-22 01:09:24 +0400 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2017-04-23 13:30:13 +0200 |
commit | f586c7ec352b3b7b23dba0e1e774d85b1c14e2b7 (patch) | |
tree | ab011fe8680323aab2588de9389e498c6421c68f /sc | |
parent | dff3d8ca4c17a649d2ac6ced448df9c784497d41 (diff) |
tdf#104610 Always enabled no-width break formatting marks
Change-Id: I0708a61d43bfa44dac19683b200975e3a6da788a
Reviewed-on: https://gerrit.libreoffice.org/36807
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/sdi/app.sdi | 2 | ||||
-rw-r--r-- | sc/source/ui/view/editsh.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/viewutil.cxx | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/sc/sdi/app.sdi b/sc/sdi/app.sdi index d8f2dcea4fdb..7787a5956efe 100644 --- a/sc/sdi/app.sdi +++ b/sc/sdi/app.sdi @@ -67,8 +67,6 @@ interface StarCalc SID_INSERT_RLM [ StateMethod = HideDisabledSlots; Export = FALSE; ] SID_INSERT_LRM [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_INSERT_ZWSP [ StateMethod = HideDisabledSlots; Export = FALSE; ] - SID_INSERT_ZWNBSP [ StateMethod = HideDisabledSlots; Export = FALSE; ] } diff --git a/sc/source/ui/view/editsh.cxx b/sc/source/ui/view/editsh.cxx index 73ff7b3b5082..0d9465603aca 100644 --- a/sc/source/ui/view/editsh.cxx +++ b/sc/source/ui/view/editsh.cxx @@ -751,8 +751,6 @@ void ScEditShell::GetState( SfxItemSet& rSet ) case SID_TRANSLITERATE_KATAGANA: case SID_INSERT_RLM: case SID_INSERT_LRM: - case SID_INSERT_ZWNBSP: - case SID_INSERT_ZWSP: ScViewUtil::HideDisabledSlot( rSet, pViewData->GetBindings(), nWhich ); break; diff --git a/sc/source/ui/view/viewutil.cxx b/sc/source/ui/view/viewutil.cxx index bd4afc6e47e3..8c00d51c6028 100644 --- a/sc/source/ui/view/viewutil.cxx +++ b/sc/source/ui/view/viewutil.cxx @@ -323,8 +323,6 @@ void ScViewUtil::HideDisabledSlot( SfxItemSet& rSet, SfxBindings& rBindings, sal case SID_INSERT_RLM: case SID_INSERT_LRM: - case SID_INSERT_ZWNBSP: - case SID_INSERT_ZWSP: bEnabled = aCTLOptions.IsCTLFontEnabled(); break; |