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 --- rsc/source/parser/rsclex.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rsc') diff --git a/rsc/source/parser/rsclex.cxx b/rsc/source/parser/rsclex.cxx index 9016db063880..a78301ac1b36 100644 --- a/rsc/source/parser/rsclex.cxx +++ b/rsc/source/parser/rsclex.cxx @@ -110,7 +110,7 @@ sal_uInt32 GetNumber(){ int MakeToken( YYSTYPE * pTokenVal ){ int c1; - while( sal_True ){ // Kommentare und Leerzeichen ueberlesen + while( true ){ // Kommentare und Leerzeichen ueberlesen while( isspace( c ) ) c = pFI->GetFastChar(); if( '/' == c ){ -- cgit