diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-12 15:09:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 10:52:46 +0200 |
commit | 4c6d1a2636941c559d78fcac36125ba1374330f9 (patch) | |
tree | d651b23ce2b95f320d37a4d4c3fb2d1ccf0de916 /cui/source/tabpages/paragrph.cxx | |
parent | 860130783830fc39ea49a3c76f70ab79b4f31f92 (diff) |
loplugin: defaultparams
Change-Id: I81537289a40bdc30bd8d896dc5364f0989205e39
Diffstat (limited to 'cui/source/tabpages/paragrph.cxx')
-rw-r--r-- | cui/source/tabpages/paragrph.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx index 111dac960a4b..1b13d74fbd30 100644 --- a/cui/source/tabpages/paragrph.cxx +++ b/cui/source/tabpages/paragrph.cxx @@ -1289,8 +1289,8 @@ IMPL_LINK_NOARG(SvxParaAlignTabPage, TextDirectionHdl_Impl) switch ( eDir ) { // check the default alignment for this text direction - case FRMDIR_HORI_LEFT_TOP : m_pLeft->Check( true ); break; - case FRMDIR_HORI_RIGHT_TOP : m_pRight->Check( true ); break; + case FRMDIR_HORI_LEFT_TOP : m_pLeft->Check(); break; + case FRMDIR_HORI_RIGHT_TOP : m_pRight->Check(); break; case FRMDIR_ENVIRONMENT : /* do nothing */ break; default: { @@ -1636,7 +1636,7 @@ void SvxExtParagraphTabPage::Reset( const SfxItemSet* rSet ) } else if ( SfxItemState::DONTCARE == eItemState ) { - m_pApplyCollBtn->EnableTriState( true ); + m_pApplyCollBtn->EnableTriState(); m_pApplyCollBtn->SetState( TRISTATE_INDET ); m_pApplyCollBox->SetNoSelection(); } |