summaryrefslogtreecommitdiff
path: root/sw/source/filter/ascii/wrtasc.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-12-19 22:41:13 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-12-20 09:40:35 +0900
commit1e65f0176a9243274971321ffa5b6462130904ed (patch)
treed7525c159a0513c56f7b38cdde52886e1329f02a /sw/source/filter/ascii/wrtasc.cxx
parentf3ea8bb8f69db2398a3858de0dc9c3b0d8cc9774 (diff)
sal_Bool to bool
Change-Id: Ie4aac09e9aa7232c61cfdcda7b2bffd5002036a7
Diffstat (limited to 'sw/source/filter/ascii/wrtasc.cxx')
-rw-r--r--sw/source/filter/ascii/wrtasc.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ascii/wrtasc.cxx b/sw/source/filter/ascii/wrtasc.cxx
index 57229dc0d979..3f6847a57be0 100644
--- a/sw/source/filter/ascii/wrtasc.cxx
+++ b/sw/source/filter/ascii/wrtasc.cxx
@@ -111,7 +111,7 @@ sal_uLong SwASCWriter::WriteStream()
SwPaM* pPam = pOrigPam;
- sal_Bool bWriteSttTag = bUCS2_WithStartChar &&
+ bool bWriteSttTag = bUCS2_WithStartChar &&
(RTL_TEXTENCODING_UCS2 == GetAsciiOptions().GetCharSet() ||
RTL_TEXTENCODING_UTF8 == GetAsciiOptions().GetCharSet());
@@ -120,7 +120,7 @@ sal_uLong SwASCWriter::WriteStream()
// Output all areas of the pam into the ASC file
do {
- sal_Bool bTstFly = sal_True;
+ bool bTstFly = true;
while( pCurPam->GetPoint()->nNode.GetIndex() < pCurPam->GetMark()->nNode.GetIndex() ||
(pCurPam->GetPoint()->nNode.GetIndex() == pCurPam->GetMark()->nNode.GetIndex() &&
pCurPam->GetPoint()->nContent.GetIndex() <= pCurPam->GetMark()->nContent.GetIndex()) )
@@ -175,11 +175,11 @@ sal_uLong SwASCWriter::WriteStream()
break;
}
- bWriteSttTag = sal_False;
+ bWriteSttTag = false;
}
Out( aASCNodeFnTab, *pNd, *this );
}
- bTstFly = sal_False; // Testing once is enough
+ bTstFly = false; // Testing once is enough
}
if( !pCurPam->Move( fnMoveForward, fnGoNode ) )