summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdpoev.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-04-09 06:51:30 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-04-09 07:22:53 +0900
commit0f9190b1fad6a468a03d13db0345051aef82217a (patch)
tree01458869fdec7c0aa05766aa03875fe01f4802b0 /svx/source/svdraw/svdpoev.cxx
parent1155f024840ea7cffdacb3c9a09f3d88f8d095ff (diff)
sal_Bool to bool
Change-Id: Idc97443436502eea5dec27d553374475a22bd7ce
Diffstat (limited to 'svx/source/svdraw/svdpoev.cxx')
-rw-r--r--svx/source/svdraw/svdpoev.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdpoev.cxx b/svx/source/svdraw/svdpoev.cxx
index fd0098350bf2..e6324da53653 100644
--- a/svx/source/svdraw/svdpoev.cxx
+++ b/svx/source/svdraw/svdpoev.cxx
@@ -371,7 +371,7 @@ void SdrPolyEditView::RipUpAtMarkedPoints()
{
if( bUndo )
AddUndo(GetModel()->GetSdrUndoFactory().CreateUndoGeoObject(*pObj));
- sal_Bool bKorregFlag(sal_False);
+ bool bKorregFlag(false);
sal_uInt32 nMax(pObj->GetHdlCount());
for(SdrUShortCont::const_reverse_iterator it = pPts->rbegin(); it != pPts->rend(); ++it)
@@ -391,10 +391,10 @@ void SdrPolyEditView::RipUpAtMarkedPoints()
if(nNewPt0Idx)
{
// correction necessary?
- DBG_ASSERT(bKorregFlag==sal_False,"Multiple index corrections at SdrPolyEditView::RipUp().");
+ DBG_ASSERT(bKorregFlag==false,"Multiple index corrections at SdrPolyEditView::RipUp().");
if(!bKorregFlag)
{
- bKorregFlag = sal_True;
+ bKorregFlag = true;
SdrUShortCont aReplaceSet;
for(SdrUShortCont::const_iterator it2 = pPts->begin(); it2 != pPts->end(); ++it2)