summaryrefslogtreecommitdiff
path: root/svx/source/dialog/graphctl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 11:16:02 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:16 +0200
commit5e456cc3b30f2e099429f7075eda23e86871621e (patch)
tree97d50b238356b6e5187b505415fe844acae68326 /svx/source/dialog/graphctl.cxx
parent11bb658a60777243483fe8e682ca46e88855690a (diff)
svx: sal_Bool->bool
Change-Id: I061f1e15c816f8077c0fbb0abbc1474eb286796b
Diffstat (limited to 'svx/source/dialog/graphctl.cxx')
-rw-r--r--svx/source/dialog/graphctl.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/svx/source/dialog/graphctl.cxx b/svx/source/dialog/graphctl.cxx
index d4c61d63715a..d0a769ba58c9 100644
--- a/svx/source/dialog/graphctl.cxx
+++ b/svx/source/dialog/graphctl.cxx
@@ -61,9 +61,9 @@ GraphCtrl::GraphCtrl( Window* pParent, const ResId& rResId ) :
nWinStyle ( 0 ),
eObjKind ( OBJ_NONE ),
nPolyEdit ( 0 ),
- bEditMode ( sal_False ),
- bSdrMode ( sal_False ),
- bAnim ( sal_False ),
+ bEditMode ( false ),
+ bSdrMode ( false ),
+ bAnim ( false ),
mpAccContext ( NULL ),
pModel ( NULL ),
pView ( NULL )
@@ -81,9 +81,9 @@ GraphCtrl::GraphCtrl( Window* pParent, WinBits nStyle ) :
nWinStyle ( 0 ),
eObjKind ( OBJ_NONE ),
nPolyEdit ( 0 ),
- bEditMode ( sal_False ),
- bSdrMode ( sal_False ),
- bAnim ( sal_False ),
+ bEditMode ( false ),
+ bSdrMode ( false ),
+ bAnim ( false ),
mpAccContext ( NULL ),
pModel ( NULL ),
pView ( NULL )
@@ -179,7 +179,7 @@ void GraphCtrl::InitSdrModel()
mpAccContext->setModelAndView (pModel, pView);
}
-void GraphCtrl::SetGraphic( const Graphic& rGraphic, sal_Bool bNewModel )
+void GraphCtrl::SetGraphic( const Graphic& rGraphic, bool bNewModel )
{
// If possible we dither bitmaps for the display
if ( !bAnim && ( rGraphic.GetType() == GRAPHIC_BITMAP ) )
@@ -718,7 +718,7 @@ SdrObject* GraphCtrl::GetSelectedSdrObject() const
return pSdrObj;
}
-void GraphCtrl::SetEditMode( const sal_Bool _bEditMode )
+void GraphCtrl::SetEditMode( const bool _bEditMode )
{
if ( bSdrMode )
{
@@ -728,7 +728,7 @@ void GraphCtrl::SetEditMode( const sal_Bool _bEditMode )
pView->SetCurrentObj( sal::static_int_cast< sal_uInt16 >( eObjKind ) );
}
else
- bEditMode = sal_False;
+ bEditMode = false;
}
void GraphCtrl::SetPolyEditMode( const sal_uInt16 _nPolyEdit )
@@ -746,7 +746,7 @@ void GraphCtrl::SetObjKind( const SdrObjKind _eObjKind )
{
if ( bSdrMode )
{
- bEditMode = sal_False;
+ bEditMode = false;
pView->SetEditMode( bEditMode );
eObjKind = _eObjKind;
pView->SetCurrentObj( sal::static_int_cast< sal_uInt16 >( eObjKind ) );