diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-20 14:26:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-06-21 11:13:52 +0200 |
commit | 95c348afa8f4f17c058c449ded75025175af0e4a (patch) | |
tree | 88f21ab151fbbf5c79e9adf4bae8dfb920c9e85a /cui | |
parent | 2149d4a88e9dc88c30e7475f8ea317e5c7b78529 (diff) |
loplugin:unusedfields in svx part2
Change-Id: Ie9fd55b71a152f428a397d9917918f0e9de39aaf
Reviewed-on: https://gerrit.libreoffice.org/39014
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/page.cxx | 37 | ||||
-rw-r--r-- | cui/source/tabpages/paragrph.cxx | 20 |
2 files changed, 6 insertions, 51 deletions
diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx index 437cdb41a0e5..147242fe1df1 100644 --- a/cui/source/tabpages/page.cxx +++ b/cui/source/tabpages/page.cxx @@ -1163,14 +1163,6 @@ void SvxPageDescPage::ResetBackground_Impl(const SfxItemSet& rSet) } m_pBspWin->setHeaderFillAttributes(aHeaderFillAttributes); - nWhich = GetWhich(SID_ATTR_BORDER_OUTER); - - if(rTmpSet.GetItemState(nWhich) == SfxItemState::SET) - { - const SvxBoxItem& rItem = - static_cast<const SvxBoxItem&>(rTmpSet.Get( nWhich )); - m_pBspWin->SetHdBorder( rItem ); - } } } @@ -1207,13 +1199,6 @@ void SvxPageDescPage::ResetBackground_Impl(const SfxItemSet& rSet) } m_pBspWin->setFooterFillAttributes(aFooterFillAttributes); - nWhich = GetWhich(SID_ATTR_BORDER_OUTER); - - if(rTmpSet.GetItemState(nWhich) == SfxItemState::SET) - { - const SvxBoxItem& rItem = static_cast< const SvxBoxItem& >(rTmpSet.Get(nWhich)); - m_pBspWin->SetFtBorder(rItem); - } } } @@ -1241,12 +1226,6 @@ void SvxPageDescPage::ResetBackground_Impl(const SfxItemSet& rSet) } m_pBspWin->setPageFillAttributes(aPageFillAttributes); - pItem = GetItem(rSet, SID_ATTR_BORDER_OUTER); - - if(pItem) - { - m_pBspWin->SetBorder(static_cast< const SvxBoxItem& >(*pItem)); - } } void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet ) @@ -1311,14 +1290,6 @@ void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet ) } m_pBspWin->setHeaderFillAttributes(aHeaderFillAttributes); - const sal_uInt16 nWhich(GetWhich(SID_ATTR_BORDER_OUTER)); - - if ( rHeaderSet.GetItemState( nWhich ) >= SfxItemState::DEFAULT ) - { - const SvxBoxItem& rItem = - static_cast<const SvxBoxItem&>(rHeaderSet.Get( nWhich )); - m_pBspWin->SetHdBorder( rItem ); - } } // evaluate footer attributes @@ -1373,14 +1344,6 @@ void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet ) } m_pBspWin->setFooterFillAttributes(aFooterFillAttributes); - const sal_uInt16 nWhich(GetWhich(SID_ATTR_BORDER_OUTER)); - - if ( rFooterSet.GetItemState( nWhich ) >= SfxItemState::DEFAULT ) - { - const SvxBoxItem& rItem = - static_cast<const SvxBoxItem&>(rFooterSet.Get( nWhich )); - m_pBspWin->SetFtBorder( rItem ); - } } } diff --git a/cui/source/tabpages/paragrph.cxx b/cui/source/tabpages/paragrph.cxx index 986f433852e0..38827706dec8 100644 --- a/cui/source/tabpages/paragrph.cxx +++ b/cui/source/tabpages/paragrph.cxx @@ -609,11 +609,11 @@ void SvxStdParagraphTabPage::EnableRelativeMode() { DBG_ASSERT( GetItemSet().GetParent(), "RelativeMode, but no parent-set!" ); - m_pLeftIndent->EnableRelativeMode( 0, 999, 5 ); - m_pFLineIndent->EnableRelativeMode( 0, 999, 5 ); - m_pRightIndent->EnableRelativeMode( 0, 999, 5 ); - m_pTopDist->EnableRelativeMode( 0, 999, 5 ); - m_pBottomDist->EnableRelativeMode( 0, 999, 5 ); + m_pLeftIndent->EnableRelativeMode( 0, 999 ); + m_pFLineIndent->EnableRelativeMode( 0, 999 ); + m_pRightIndent->EnableRelativeMode( 0, 999 ); + m_pTopDist->EnableRelativeMode( 0, 999 ); + m_pBottomDist->EnableRelativeMode( 0, 999 ); bRelativeMode = true; } @@ -895,19 +895,11 @@ void SvxStdParagraphTabPage::UpdateExample_Impl() case LLINESPACE_115: case LLINESPACE_15: case LLINESPACE_2: - m_pExampleWin->SetLineSpace( (SvxPrevLineSpace)nPos ); - break; - case LLINESPACE_PROP: - m_pExampleWin->SetLineSpace( (SvxPrevLineSpace)nPos, - (sal_uInt16)m_pLineDistAtPercentBox->Denormalize( m_pLineDistAtPercentBox->GetValue() ) ); - break; - case LLINESPACE_MIN: case LLINESPACE_DURCH: case LLINESPACE_FIX: - m_pExampleWin->SetLineSpace( (SvxPrevLineSpace)nPos, - (sal_uInt16)GetCoreValue( *m_pLineDistAtMetricBox, MapUnit::MapTwip ) ); + m_pExampleWin->SetLineSpace( (SvxPrevLineSpace)nPos ); break; } m_pExampleWin->Invalidate(); |