[Libreoffice-commits] core.git: sd/source

Stephan Bergmann sbergman at redhat.com
Fri Feb 7 05:19:14 PST 2014


 sd/source/ui/view/sdview4.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8ed9bcb78452b0c30858f9ab8b0c4dac1cc25256
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Feb 7 14:18:41 2014 +0100

    sal_Bool -> bool
    
    Change-Id: Iee1a6736376edcf918e7b7fcb331cb2758595e4e

diff --git a/sd/source/ui/view/sdview4.cxx b/sd/source/ui/view/sdview4.cxx
index 6a6b4e4..1d6dd3f 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))


More information about the Libreoffice-commits mailing list