Changeset 363 for trunk/qmake/cachekeys.h
- Timestamp:
- Nov 30, 2009, 6:52:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/cachekeys.h
r362 r363 48 48 #include <qfile.h> 49 49 #include <qfileinfo.h> 50 #include <qdir.h>51 50 #include <qhash.h> 52 51 … … 108 107 return true; 109 108 110 #ifdef Q_OS_OS2111 return QDir::isRelativePath(file);112 #else113 109 const QChar c0 = file.at(0); 114 110 const QChar c1 = length >= 2 ? file.at(1) : QChar(0); … … 118 114 || (c0 == QLatin1Char('/') && c1 == QLatin1Char('/')) 119 115 || (c0 == QLatin1Char('\\') && c1 == QLatin1Char('\\'))); 120 #endif121 116 } 122 117 };
Note:
See TracChangeset
for help on using the changeset viewer.