summaryrefslogtreecommitdiff
path: root/sd/source/core
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/core')
-rw-r--r--sd/source/core/drawdoc4.cxx2
-rw-r--r--sd/source/core/undo/undoobjects.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/core/drawdoc4.cxx b/sd/source/core/drawdoc4.cxx
index b56b0eeffd3a..5cfad63e745e 100644
--- a/sd/source/core/drawdoc4.cxx
+++ b/sd/source/core/drawdoc4.cxx
@@ -1343,7 +1343,7 @@ void ModifyGuard::init()
mpDocShell = mpDoc->GetDocSh();
}
- mbIsEnableSetModified = mpDocShell ? mpDocShell->IsEnableSetModified() : sal_False;
+ mbIsEnableSetModified = mpDocShell ? mpDocShell->IsEnableSetModified() : false;
mbIsDocumentChanged = mpDoc && mpDoc->IsChanged();
if( mbIsEnableSetModified )
diff --git a/sd/source/core/undo/undoobjects.cxx b/sd/source/core/undo/undoobjects.cxx
index fe4ff3b40f65..2a72e26db237 100644
--- a/sd/source/core/undo/undoobjects.cxx
+++ b/sd/source/core/undo/undoobjects.cxx
@@ -198,7 +198,7 @@ void UndoObjectSetText::Redo()
if( mpUndoAnimation )
mpUndoAnimation->Redo();
SdrUndoObjSetText::Redo();
- mxSdrObject->SetEmptyPresObj(mbNewEmptyPresObj ? sal_True : sal_False );
+ mxSdrObject->SetEmptyPresObj(mbNewEmptyPresObj ? true : false );
}
}
@@ -330,7 +330,7 @@ void UndoGeoObject::Redo()
}
UndoAttrObject::UndoAttrObject( SdrObject& rObject, bool bStyleSheet1, bool bSaveText )
-: SdrUndoAttrObj( rObject, bStyleSheet1 ? sal_True : sal_False, bSaveText ? sal_True : sal_False )
+: SdrUndoAttrObj( rObject, bStyleSheet1 ? true : false, bSaveText ? true : false )
, mxPage( rObject.GetPage() )
, mxSdrObject( &rObject )
{