summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/unprlout.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/func/unprlout.cxx')
-rwxr-xr-x[-rw-r--r--]sd/source/ui/func/unprlout.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/func/unprlout.cxx b/sd/source/ui/func/unprlout.cxx
index ec0b223cf6a8..6f01d8613e0d 100644..100755
--- a/sd/source/ui/func/unprlout.cxx
+++ b/sd/source/ui/func/unprlout.cxx
@@ -53,7 +53,7 @@ SdPresentationLayoutUndoAction::SdPresentationLayoutUndoAction(
String aTheNewLayoutName,
AutoLayout eTheOldAutoLayout,
AutoLayout eTheNewAutoLayout,
- BOOL bSet,
+ sal_Bool bSet,
SdPage* pThePage):
SdUndoAction(pTheDoc)
{
@@ -76,9 +76,9 @@ SdPresentationLayoutUndoAction::SdPresentationLayoutUndoAction(
void SdPresentationLayoutUndoAction::Undo()
{
- pPage->SetPresentationLayout(aOldLayoutName, TRUE, TRUE, TRUE);
+ pPage->SetPresentationLayout(aOldLayoutName, sal_True, sal_True, sal_True);
if (bSetAutoLayout)
- pPage->SetAutoLayout(eOldAutoLayout, TRUE);
+ pPage->SetAutoLayout(eOldAutoLayout, sal_True);
}
/*************************************************************************
@@ -91,7 +91,7 @@ void SdPresentationLayoutUndoAction::Redo()
{
pPage->SetPresentationLayout(aNewLayoutName);
if (bSetAutoLayout)
- pPage->SetAutoLayout(eNewAutoLayout, TRUE);
+ pPage->SetAutoLayout(eNewAutoLayout, sal_True);
}
/*************************************************************************