Ignore:
Timestamp:
Nov 30, 2009, 6:52:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

global: Reverted r355, r356, r361, r362 (see #78).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/cachekeys.h

    r362 r363  
    4848#include <qfile.h>
    4949#include <qfileinfo.h>
    50 #include <qdir.h>
    5150#include <qhash.h>
    5251
     
    108107            return true;
    109108
    110 #ifdef Q_OS_OS2
    111         return QDir::isRelativePath(file);
    112 #else
    113109        const QChar c0 = file.at(0);
    114110        const QChar c1 = length >= 2 ? file.at(1) : QChar(0);
     
    118114                || (c0 == QLatin1Char('/') && c1 == QLatin1Char('/'))
    119115                || (c0 == QLatin1Char('\\') && c1 == QLatin1Char('\\')));
    120 #endif   
    121116    }
    122117};
Note: See TracChangeset for help on using the changeset viewer.