Q_WS_WIN -> Q_OS_WIN (bug #62)
This commit is contained in:
parent
531a93130e
commit
159bece5db
2 changed files with 2 additions and 2 deletions
|
@ -754,7 +754,7 @@ QList<QuaZipFileInfo64> QuaZip::getFileInfoList64() const
|
|||
Qt::CaseSensitivity QuaZip::convertCaseSensitivity(QuaZip::CaseSensitivity cs)
|
||||
{
|
||||
if (cs == csDefault) {
|
||||
#ifdef Q_WS_WIN
|
||||
#ifdef Q_OS_WIN
|
||||
return Qt::CaseInsensitive;
|
||||
#else
|
||||
return Qt::CaseSensitive;
|
||||
|
|
|
@ -337,7 +337,7 @@ void TestQuaZipFile::setFileName()
|
|||
QVERIFY(createTestArchive(testZipName, QStringList() << testFileName));
|
||||
QuaZipFile testFile(testZipName);
|
||||
testFile.setFileName(testFileName.toUpper());
|
||||
#ifdef Q_WS_WIN
|
||||
#ifdef Q_OS_WIN
|
||||
QVERIFY(testFile.open(QIODevice::ReadOnly));
|
||||
testFile.close();
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue