From ce33f85ffdb8612c9fba9356acdaa93a08a9ba41 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Mon, 4 Mar 2013 23:11:48 +0900 Subject: sal_Bool to bool Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6 --- sax/source/expatwrap/xml2utf.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sax/source') diff --git a/sax/source/expatwrap/xml2utf.cxx b/sax/source/expatwrap/xml2utf.cxx index 97bc44d134de..69065c64720e 100644 --- a/sax/source/expatwrap/xml2utf.cxx +++ b/sax/source/expatwrap/xml2utf.cxx @@ -53,7 +53,7 @@ sal_Int32 XMLFile2UTFConverter::readAndConvert( Sequence &seq , sal_In sal_Int32 nRead; Sequence< sal_Int8 > seqStart; - while( sal_True ) + while( true ) { nRead = m_in->readSomeBytes( seq , nMaxToRead ); @@ -409,7 +409,7 @@ Sequence Text2UnicodeConverter::convert( const Sequence & m_seqSource = Sequence< sal_Int8 >(); } - while( sal_True ) { + while( true ) { /* All invalid characters are transformed to the unicode undefined char */ nTargetCount += rtl_convertTextToUnicode( @@ -509,7 +509,7 @@ Sequence Unicode2TextConverter::convert(const sal_Unicode *puSource , Sequence seqText( nSeqSize ); sal_Char *pTarget = (sal_Char *) seqText.getArray(); - while( sal_True ) { + while( true ) { nTargetCount += rtl_convertUnicodeToText( m_convUnicode2Text, -- cgit