summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fubullet.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-25 14:19:24 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:26 +0200
commit57779aa0195d77239b339c6dbe17209b3f0cc4ee (patch)
treefb07a1ccf2c6394da9d4c63ca0ae139af9669e8a /sd/source/ui/func/fubullet.cxx
parent127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0 (diff)
editeng: sal_Bool->bool
Change-Id: Id4174904487fc153d8e80471da7c829c52092f78
Diffstat (limited to 'sd/source/ui/func/fubullet.cxx')
-rw-r--r--sd/source/ui/func/fubullet.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sd/source/ui/func/fubullet.cxx b/sd/source/ui/func/fubullet.cxx
index c9719ccb533b..caa7043ef759 100644
--- a/sd/source/ui/func/fubullet.cxx
+++ b/sd/source/ui/func/fubullet.cxx
@@ -121,7 +121,7 @@ void FuBullet::InsertFormattingMark( sal_Unicode cMark )
{
// prevent flickering
pOV->HideCursor();
- pOL->SetUpdateMode(sal_False);
+ pOL->SetUpdateMode(false);
// remove old selected text
pOV->InsertText( aEmptyStr );
@@ -133,7 +133,7 @@ void FuBullet::InsertFormattingMark( sal_Unicode cMark )
// insert given text
OUString aStr( cMark );
- pOV->InsertText( aStr, sal_True);
+ pOV->InsertText( aStr, true);
ESelection aSel = pOV->GetSelection();
aSel.nStartPara = aSel.nEndPara;
@@ -143,7 +143,7 @@ void FuBullet::InsertFormattingMark( sal_Unicode cMark )
rUndoMgr.LeaveListAction();
// restart repainting
- pOL->SetUpdateMode(sal_True);
+ pOL->SetUpdateMode(true);
pOV->ShowCursor();
}
}
@@ -245,7 +245,7 @@ void FuBullet::InsertSpecialCharacter( SfxRequest& rReq )
{
// prevent flicker
pOV->HideCursor();
- pOL->SetUpdateMode(sal_False);
+ pOL->SetUpdateMode(false);
/* remember old attributes:
To do that, remove selected area before (it has to go anyway).
@@ -260,7 +260,7 @@ void FuBullet::InsertSpecialCharacter( SfxRequest& rReq )
::svl::IUndoManager& rUndoMgr = pOL->GetUndoManager();
rUndoMgr.EnterListAction(SD_RESSTR(STR_UNDO_INSERT_SPECCHAR),
aEmptyStr );
- pOV->InsertText(aChars, sal_True);
+ pOV->InsertText(aChars, true);
// set attributes (set font)
SfxItemSet aSet(pOL->GetEmptyItemSet());
@@ -284,7 +284,7 @@ void FuBullet::InsertSpecialCharacter( SfxRequest& rReq )
rUndoMgr.LeaveListAction();
// show it again
- pOL->SetUpdateMode(sal_True);
+ pOL->SetUpdateMode(true);
pOV->ShowCursor();
}
}