summaryrefslogtreecommitdiff
path: root/sd/source/ui/unoidl
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/unoidl')
-rw-r--r--sd/source/ui/unoidl/unoobj.cxx2
-rw-r--r--sd/source/ui/unoidl/unopage.cxx12
2 files changed, 7 insertions, 7 deletions
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();