Changeset 127
- Timestamp:
- Sep 14, 2006, 10:19:10 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/tools/qfile_pm.cpp
r8 r127 62 62 if ( fileName[i] < QChar( 32 ) ) 63 63 return FALSE; 64 if ( strchr( badChars, fileName[i] ) ) 64 int ch = fileName[i].latin1(); 65 if ( !ch ) 66 continue; 67 if ( strchr( badChars, ch ) ) 65 68 return FALSE; 66 69 }
Note:
See TracChangeset
for help on using the changeset viewer.