summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fucopy.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-24 10:52:02 +0200
committerNoel Grandin <noel@peralex.com>2014-04-24 10:53:17 +0200
commitb45a12c37d2b671e54404afda5dee1b0947bd3ed (patch)
tree484fa50da87e5434970c774527a77e0dd079e1b9 /sd/source/ui/func/fucopy.cxx
parente4e654e40575300eaab429a6b94348bf43b9d7ce (diff)
sd: sal_Bool->bool
Change-Id: I3172a42f6b6abe434ffe0475d1201ff50b6c06ea
Diffstat (limited to 'sd/source/ui/func/fucopy.cxx')
-rw-r--r--sd/source/ui/func/fucopy.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/func/fucopy.cxx b/sd/source/ui/func/fucopy.cxx
index d2453fcf022d..02d194f33a9e 100644
--- a/sd/source/ui/func/fucopy.cxx
+++ b/sd/source/ui/func/fucopy.cxx
@@ -128,7 +128,7 @@ void FuCopy::DoExecute( SfxRequest& rReq )
sal_Int32 lWidth = 0, lHeight = 0, lSizeX = 0L, lSizeY = 0L, lAngle = 0L;
sal_uInt16 nNumber = 0;
Color aStartColor, aEndColor;
- sal_Bool bColor = sal_False;
+ bool bColor = false;
const SfxPoolItem* pPoolItem = NULL;
// Count
@@ -153,22 +153,22 @@ void FuCopy::DoExecute( SfxRequest& rReq )
if( SFX_ITEM_SET == pArgs->GetItemState( ATTR_COPY_START_COLOR, true, &pPoolItem ) )
{
aStartColor = ( ( const XColorItem* ) pPoolItem )->GetColorValue();
- bColor = sal_True;
+ bColor = true;
}
if( SFX_ITEM_SET == pArgs->GetItemState( ATTR_COPY_END_COLOR, true, &pPoolItem ) )
{
aEndColor = ( ( const XColorItem* ) pPoolItem )->GetColorValue();
if( aStartColor == aEndColor )
- bColor = sal_False;
+ bColor = false;
}
else
- bColor = sal_False;
+ bColor = false;
// remove handles
//HMHmpView->HideMarkHdl();
SfxProgress* pProgress = NULL;
- sal_Bool bWaiting = sal_False;
+ bool bWaiting = false;
if( nNumber > 1 )
{
@@ -177,7 +177,7 @@ void FuCopy::DoExecute( SfxRequest& rReq )
pProgress = new SfxProgress( mpDocSh, aStr, nNumber );
mpDocSh->SetWaitCursor( true );
- bWaiting = sal_True;
+ bWaiting = true;
}
const SdrMarkList aMarkList( mpView->GetMarkedObjectList() );