diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-05 16:01:17 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:20 +0200 |
commit | 37a2ed040e0e11ecef115d8955e09845aeff7511 (patch) | |
tree | 6387f7f6d66e0e02f79b1e8bc604ba7832249d4e /cui | |
parent | eeae5cf0432adb83e5e948a217020b776144d783 (diff) |
svx: sal_Bool->bool
Change-Id: I7e7bdce5c3ddb7871b9c1fbfe93dc7f7c254f1bb
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/page.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cui/source/tabpages/page.cxx b/cui/source/tabpages/page.cxx index c49ff5d012fb..58853eef05c8 100644 --- a/cui/source/tabpages/page.cxx +++ b/cui/source/tabpages/page.cxx @@ -270,7 +270,7 @@ SvxPageDescPage::SvxPageDescPage( Window* pParent, const SfxItemSet& rAttr ) : m_pTextFlowBox->Show(); m_pTextFlowBox->SetSelectHdl(LINK(this, SvxPageDescPage, FrameDirectionModify_Impl )); - m_pBspWin->EnableFrameDirection(sal_True); + m_pBspWin->EnableFrameDirection(true); } Init_Impl(); @@ -567,7 +567,7 @@ void SvxPageDescPage::Reset( const SfxItemSet& rSet ) : sal_False ); // set example window on the table - m_pBspWin->SetTable( sal_True ); + m_pBspWin->SetTable( true ); m_pBspWin->SetHorz( m_pHorzBox->IsChecked() ); m_pBspWin->SetVert( m_pVertBox->IsChecked() ); @@ -1298,10 +1298,10 @@ void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet ) rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) ); m_pBspWin->SetHdLeft( rLR.GetLeft() ); m_pBspWin->SetHdRight( rLR.GetRight() ); - m_pBspWin->SetHeader( sal_True ); + m_pBspWin->SetHeader( true ); } else - m_pBspWin->SetHeader( sal_False ); + m_pBspWin->SetHeader( false ); // show background and border in the example sal_uInt16 nWhich = GetWhich( SID_ATTR_BRUSH ); @@ -1345,10 +1345,10 @@ void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet ) rFooterSet.Get( GetWhich( SID_ATTR_LRSPACE ) ); m_pBspWin->SetFtLeft( rLR.GetLeft() ); m_pBspWin->SetFtRight( rLR.GetRight() ); - m_pBspWin->SetFooter( sal_True ); + m_pBspWin->SetFooter( true ); } else - m_pBspWin->SetFooter( sal_False ); + m_pBspWin->SetFooter( false ); // show background and border in the example sal_uInt16 nWhich = GetWhich( SID_ATTR_BRUSH ); @@ -1602,7 +1602,7 @@ void SvxPageDescPage::DisableVerticalPageDir() { m_pTextFlowLbl->Hide(); m_pTextFlowBox->Hide(); - m_pBspWin->EnableFrameDirection( sal_False ); + m_pBspWin->EnableFrameDirection( false ); } } |