@@ -188,9 +188,9 @@ QCString QCString::simplifyWhiteSpace() const
188
188
char *first = to;
189
189
while ( TRUE )
190
190
{
191
- while ( *from && isspace ((uchar) *from) )
191
+ while ( *from && qisspace ( *from) )
192
192
from++;
193
- while ( *from && !isspace ((uchar) *from) )
193
+ while ( *from && !qisspace ( *from) )
194
194
*to++ = *from++;
195
195
if ( *from )
196
196
*to++ = 0x20 ; // ' '
@@ -262,7 +262,7 @@ long QCString::toLong(bool *ok,int base) const
262
262
int neg = 0 ;
263
263
if ( !p )
264
264
goto bye;
265
- while ( l && isspace (*p) ) // skip leading space
265
+ while ( l && qisspace (*p) ) // skip leading space
266
266
l--,p++;
267
267
if ( l && *p == ' -' ) {
268
268
l--;
@@ -294,7 +294,7 @@ long QCString::toLong(bool *ok,int base) const
294
294
}
295
295
if ( neg )
296
296
val = -val;
297
- while ( l && isspace (*p) ) // skip trailing space
297
+ while ( l && qisspace (*p) ) // skip trailing space
298
298
l--,p++;
299
299
if ( !l )
300
300
is_ok = TRUE ;
@@ -313,7 +313,7 @@ ulong QCString::toULong(bool *ok,int base) const
313
313
bool is_ok = FALSE ;
314
314
if ( !p )
315
315
goto bye;
316
- while ( l && isspace (*p) ) // skip leading space
316
+ while ( l && qisspace (*p) ) // skip leading space
317
317
l--,p++;
318
318
if ( *p == ' +' )
319
319
l--,p++;
@@ -338,7 +338,7 @@ ulong QCString::toULong(bool *ok,int base) const
338
338
p++;
339
339
}
340
340
341
- while ( l && isspace (*p) ) // skip trailing space
341
+ while ( l && qisspace (*p) ) // skip trailing space
342
342
l--,p++;
343
343
if ( !l )
344
344
is_ok = TRUE ;
@@ -357,7 +357,7 @@ uint64 QCString::toUInt64(bool *ok,int base) const
357
357
bool is_ok = FALSE ;
358
358
if ( !p )
359
359
goto bye;
360
- while ( l && isspace (*p) ) // skip leading space
360
+ while ( l && qisspace (*p) ) // skip leading space
361
361
l--,p++;
362
362
if ( *p == ' +' )
363
363
l--,p++;
@@ -382,7 +382,7 @@ uint64 QCString::toUInt64(bool *ok,int base) const
382
382
p++;
383
383
}
384
384
385
- while ( l && isspace (*p) ) // skip trailing space
385
+ while ( l && qisspace (*p) ) // skip trailing space
386
386
l--,p++;
387
387
if ( !l )
388
388
is_ok = TRUE ;
0 commit comments