diff options
author | Maxim Monastirsky <momonasmon@gmail.com> | 2017-09-24 19:27:26 +0300 |
---|---|---|
committer | Maxim Monastirsky <momonasmon@gmail.com> | 2017-09-25 00:04:23 +0200 |
commit | fb60217569b0fb5bc949c58b054da71992fe2582 (patch) | |
tree | 2c14d4643daf039024624bcc6a0b24985b1559f7 /svx/source/tbxctrls | |
parent | a1976555e0ebb9fc1575c2241e8b0878ccb66410 (diff) |
tdf#83320 Hide vertical text commands early
Instead of listing all commands in one big "if", just do
it unconditionally in the shared controller.
Change-Id: Ie415c4551a77ca8e1e29e73c0dabaff1dd13cbcb
Reviewed-on: https://gerrit.libreoffice.org/42715
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'svx/source/tbxctrls')
-rw-r--r-- | svx/source/tbxctrls/verttexttbxctrl.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/svx/source/tbxctrls/verttexttbxctrl.cxx b/svx/source/tbxctrls/verttexttbxctrl.cxx index ed7184fca627..727fde8ebd45 100644 --- a/svx/source/tbxctrls/verttexttbxctrl.cxx +++ b/svx/source/tbxctrls/verttexttbxctrl.cxx @@ -52,6 +52,12 @@ SvxVertCTLTextTbxCtrl::~SvxVertCTLTextTbxCtrl( ) { } +void SvxVertCTLTextTbxCtrl::initialize(const css::uno::Sequence<css::uno::Any>& rArguments) +{ + SfxToolBoxControl::initialize(rArguments); + setFastPropertyValue_NoBroadcast(1, css::uno::makeAny(true)); +} + void SvxVertCTLTextTbxCtrl::StateChanged( sal_uInt16 nSID, SfxItemState eState, |