diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-04 12:35:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-11 08:18:15 +0200 |
commit | 3df902ba28f6b142277a45b781a6d65389fad6b9 (patch) | |
tree | cba5c47d55da4cb4f920fb954617fd1633f079e6 /svx/source/tbxctrls/fillctrl.cxx | |
parent | caf8f777e38e75641dcd13461053ba0bfd44500f (diff) |
svx: sal_Bool->bool
Change-Id: I7588dbf9805cb89b0b13cfae379698038657c994
Diffstat (limited to 'svx/source/tbxctrls/fillctrl.cxx')
-rw-r--r-- | svx/source/tbxctrls/fillctrl.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/tbxctrls/fillctrl.cxx b/svx/source/tbxctrls/fillctrl.cxx index 919fe820f6d7..305725a59290 100644 --- a/svx/source/tbxctrls/fillctrl.cxx +++ b/svx/source/tbxctrls/fillctrl.cxx @@ -64,7 +64,7 @@ SvxFillToolBoxControl::SvxFillToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId pFillControl ( NULL ), pFillTypeLB ( NULL ), pFillAttrLB ( NULL ), - bUpdate ( sal_False ), + bUpdate ( false ), eLastXFS ( XFILL_NONE ) { addStatusListener( OUString( ".uno:FillColor" )); @@ -168,7 +168,7 @@ void SvxFillToolBoxControl::StateChanged( if(eLastXFS != eXFS) { - bUpdate = sal_True; + bUpdate = true; pFillTypeLB->SelectEntryPos( eXFS ); } @@ -180,7 +180,7 @@ void SvxFillToolBoxControl::StateChanged( //pFillTypeLB->Enable(); pFillAttrLB->Enable(); - bUpdate = sal_True; + bUpdate = true; } Update( pState ); @@ -193,7 +193,7 @@ void SvxFillToolBoxControl::StateChanged( pFillTypeLB->SetNoSelection(); pFillAttrLB->Disable(); pFillAttrLB->SetNoSelection(); - bUpdate = sal_False; + bUpdate = false; } else { @@ -220,7 +220,7 @@ void SvxFillToolBoxControl::Update( const SfxPoolItem* pState ) { if ( pStyleItem && pState && bUpdate ) { - bUpdate = sal_False; + bUpdate = false; XFillStyle eXFS = (XFillStyle)pStyleItem->GetValue(); |