diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-07 14:18:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-07 14:18:41 +0100 |
commit | 8ed9bcb78452b0c30858f9ab8b0c4dac1cc25256 (patch) | |
tree | f7f9b925da086339b224f45df9ba325427829ab2 /sd | |
parent | 4af737df9fb1746a34d461770b5ec8b09664aea1 (diff) |
sal_Bool -> bool
Change-Id: Iee1a6736376edcf918e7b7fcb331cb2758595e4e
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/sdview4.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/view/sdview4.cxx b/sd/source/ui/view/sdview4.cxx index 6a6b4e4f61b9..1d6dd3fa9f0f 100644 --- a/sd/source/ui/view/sdview4.cxx +++ b/sd/source/ui/view/sdview4.cxx @@ -132,15 +132,15 @@ SdrGrafObj* View::InsertGraphic( const Graphic& rGraphic, sal_Int8& rAction, else { pNewGrafObj = new SdrGrafObj( rGraphic, pPickObj->GetLogicRect() ); - pNewGrafObj->SetEmptyPresObj(sal_True); + pNewGrafObj->SetEmptyPresObj(true); } if ( pNewGrafObj->IsEmptyPresObj() ) { Rectangle aRect( pNewGrafObj->GetLogicRect() ); - pNewGrafObj->AdjustToMaxRect( aRect, sal_False ); + pNewGrafObj->AdjustToMaxRect( aRect, false ); pNewGrafObj->SetOutlinerParaObject(NULL); - pNewGrafObj->SetEmptyPresObj(sal_False); + pNewGrafObj->SetEmptyPresObj(false); } if (pPage && pPage->IsPresObj(pPickObj)) |