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/test/sax/testsax.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sax/test') diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index 469959c2b870..3840da724f90 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -669,7 +669,7 @@ void OSaxParserTest::testFile( const Reference < XParser > & rParser ) Any any; any <<= e; - while(sal_True) { + while(true) { SAXParseException *pEx; if( any.getValueType() == getCppuType( &e ) ) { pEx = ( SAXParseException * ) any.getValue(); @@ -736,7 +736,7 @@ void OSaxParserTest::testPerformance( const Reference < XParser > & rParser ) catch( SAXParseException &e ) { Any any; any <<= e; - while(sal_True) { + while(true) { if( any.getValueType() == getCppuType( &e ) ) { SAXParseException ex; any >>= ex; -- cgit