summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:11:48 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-03-04 23:14:41 +0900
commitce33f85ffdb8612c9fba9356acdaa93a08a9ba41 (patch)
tree26f5c53749cbefe24c8bfe0380e553131ef285a6 /rsc
parentf348749a83cb985c5bf40603a0c8b4e3b5950eab (diff)
sal_Bool to bool
Change-Id: I8c554fb3faead41c974af9c2a89728bd0bdf5eb6
Diffstat (limited to 'rsc')
-rw-r--r--rsc/source/parser/rsclex.cxx2
1 files changed, 1 insertions, 1 deletions
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 ){