From 6c97bc47177adc1c51f69f17e77b9fe2aeade122 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 10 Mar 2014 11:09:59 +0200 Subject: svx: sal_Bool->bool Change-Id: I78da39fc553b2e5040ee6665377ea51a1c4d04d7 --- sd/source/ui/unoidl/unoobj.cxx | 2 +- sd/source/ui/unoidl/unopage.cxx | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'sd/source/ui/unoidl') diff --git a/sd/source/ui/unoidl/unoobj.cxx b/sd/source/ui/unoidl/unoobj.cxx index bfd6b4a2cbea..119fe9e0aadb 100644 --- a/sd/source/ui/unoidl/unoobj.cxx +++ b/sd/source/ui/unoidl/unoobj.cxx @@ -1005,7 +1005,7 @@ void SdXShape::SetEmptyPresObj(bool bEmpty) // really delete SdrOutlinerObj at pObj pObj->NbcSetOutlinerParaObject(0L); if( bVertical && PTR_CAST( SdrTextObj, pObj ) ) - ((SdrTextObj*)pObj)->SetVerticalWriting( sal_True ); + ((SdrTextObj*)pObj)->SetVerticalWriting( true ); SdrGrafObj* pGraphicObj = PTR_CAST( SdrGrafObj, pObj ); if( pGraphicObj ) diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx index 4f199891da26..52e3ac793391 100644 --- a/sd/source/ui/unoidl/unopage.cxx +++ b/sd/source/ui/unoidl/unopage.cxx @@ -403,7 +403,7 @@ SdrObject * SdGenericDrawPage::_CreateSdrObject( const Reference< drawing::XShap { SdDrawDocument* pDoc = (SdDrawDocument*)GetPage()->GetModel(); if( pDoc ) - pObj->NbcSetStyleSheet( pDoc->GetDefaultStyleSheet(), sal_True ); + pObj->NbcSetStyleSheet( pDoc->GetDefaultStyleSheet(), true ); } return pObj; } @@ -500,7 +500,7 @@ SdrObject * SdGenericDrawPage::_CreateSdrObject( const Reference< drawing::XShap { SdDrawDocument* pDoc = (SdDrawDocument*)GetPage()->GetModel(); if( pDoc ) - pPresObj->NbcSetStyleSheet( pDoc->GetDefaultStyleSheet(), sal_True ); + pPresObj->NbcSetStyleSheet( pDoc->GetDefaultStyleSheet(), true ); GetPage()->InsertPresObj( pPresObj, eObjKind ); } } @@ -1563,7 +1563,7 @@ Reference< drawing::XShape > SAL_CALL SdGenericDrawPage::combine( const Referenc _SelectObjectsInView( xShapes, pPageView ); - mpView->CombineMarkedObjects( sal_False ); + mpView->CombineMarkedObjects( false ); mpView->AdjustMarkHdl(); const SdrMarkList& rMarkList = mpView->GetMarkedObjectList(); @@ -1594,7 +1594,7 @@ void SAL_CALL SdGenericDrawPage::split( const Reference< drawing::XShape >& xGro SdrPageView* pPageView = mpView->ShowSdrPage( GetPage() ); _SelectObjectInView( xGroup, pPageView ); - mpView->DismantleMarkedObjects( sal_False ); + mpView->DismantleMarkedObjects( false ); mpView->HideSdrPage(); GetModel()->SetModified(); @@ -1616,7 +1616,7 @@ Reference< drawing::XShape > SAL_CALL SdGenericDrawPage::bind( const Reference< _SelectObjectsInView( xShapes, pPageView ); - mpView->CombineMarkedObjects( sal_True ); + mpView->CombineMarkedObjects( true ); mpView->AdjustMarkHdl(); const SdrMarkList& rMarkList = mpView->GetMarkedObjectList(); @@ -1647,7 +1647,7 @@ void SAL_CALL SdGenericDrawPage::unbind( const Reference< drawing::XShape >& xSh SdrPageView* pPageView = mpView->ShowSdrPage( GetPage() ); _SelectObjectInView( xShape, pPageView ); - mpView->DismantleMarkedObjects( sal_True ); + mpView->DismantleMarkedObjects( true ); mpView->HideSdrPage(); GetModel()->SetModified(); -- cgit