diff options
author | Michael Stahl <Michael.Stahl@cib.de> | 2018-11-30 17:54:41 +0100 |
---|---|---|
committer | Michael Stahl <Michael.Stahl@cib.de> | 2018-12-18 17:55:30 +0100 |
commit | 32902f66e7749b2d06d13f50416be5323a0c0ea9 (patch) | |
tree | 901ab6577d25102c0a855d2a63964dfef67b34c4 /sw/source/uibase/uiview/view2.cxx | |
parent | b310378e874bc8fa7005352fcd85fa64eb075f54 (diff) |
sw_redlinehide: make layout based Show/Hide mode the default
remove ExperimentalMode checks
Change-Id: Ie098eda0840bbd3231696cae43cc572ad61379fc
Diffstat (limited to 'sw/source/uibase/uiview/view2.cxx')
-rw-r--r-- | sw/source/uibase/uiview/view2.cxx | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/sw/source/uibase/uiview/view2.cxx b/sw/source/uibase/uiview/view2.cxx index 69224a69859d..524d636241af 100644 --- a/sw/source/uibase/uiview/view2.cxx +++ b/sw/source/uibase/uiview/view2.cxx @@ -654,17 +654,10 @@ void SwView::Execute(SfxRequest &rReq) if( static_cast<const SfxBoolItem*>(pItem)->GetValue() ) nMode |= RedlineFlags::ShowDelete; - uno::Reference<uno::XComponentContext> const xContext( - comphelper::getProcessComponentContext()); - if (officecfg::Office::Common::Misc::ExperimentalMode::get(xContext)) - { - m_pWrtShell->GetLayout()->SetHideRedlines( - !static_cast<const SfxBoolItem*>(pItem)->GetValue()); - if (m_pWrtShell->IsRedlineOn()) - m_pWrtShell->SetInsMode(); - } - else - m_pWrtShell->SetRedlineFlagsAndCheckInsMode( nMode ); + m_pWrtShell->GetLayout()->SetHideRedlines( + !static_cast<const SfxBoolItem*>(pItem)->GetValue()); + if (m_pWrtShell->IsRedlineOn()) + m_pWrtShell->SetInsMode(); } break; case FN_MAILMERGE_SENDMAIL_CHILDWINDOW: |