# HG changeset patch # User koda # Date 1370526910 -7200 # Node ID 67334acaaac73d63a10bc774652ab53ac890303f # Parent b2f02b0833743d5262235606272201444adfce49 port all Q_WS_* to Q_OS_* so that we are forward compatible with Qt5 diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/HWApplication.cpp --- a/QTfrontend/HWApplication.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/HWApplication.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -23,11 +23,11 @@ #include "hwform.h" #include "MessageDialog.h" -#if !defined(Q_WS_WIN) +#if !defined(Q_OS_WIN) #include "signal.h" #endif -#if !defined(Q_WS_WIN) +#if !defined(Q_OS_WIN) void terminateFrontend(int signal) { Q_UNUSED(signal); @@ -38,7 +38,7 @@ HWApplication::HWApplication(int &argc, char **argv) : QApplication(argc, argv) { -#if !defined(Q_WS_WIN) +#if !defined(Q_OS_WIN) signal(SIGINT, &terminateFrontend); #endif #if 0 diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/hwform.cpp --- a/QTfrontend/hwform.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/hwform.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -102,7 +102,7 @@ #include "DataManager.h" #include "AutoUpdater.h" -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN #define WINVER 0x0500 #include #else @@ -110,7 +110,7 @@ #include #endif -#ifdef Q_WS_MAC +#ifdef Q_OS_MAC #include #endif @@ -1923,7 +1923,7 @@ QString prefix = "\"" + datadir->absolutePath() + "\""; QString userPrefix = "\"" + cfgdir->absolutePath() + "\""; -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN prefix = prefix.replace("/","\\"); userPrefix = userPrefix.replace("/","\\"); #endif diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/main.cpp --- a/QTfrontend/main.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/main.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -135,7 +135,7 @@ HWApplication app(argc, argv); QLabel *splash = NULL; -#if defined Q_WS_WIN +#if defined Q_OS_WIN QPixmap pixmap(":res/splash.png"); splash = new QLabel(0, Qt::FramelessWindowHint|Qt::WindowStaysOnTopHint); splash->setAttribute(Qt::WA_TranslucentBackground); diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/ui/page/pagenet.cpp --- a/QTfrontend/ui/page/pagenet.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/ui/page/pagenet.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -73,7 +73,7 @@ BtnNetSvrStart = formattedButton(QPushButton::tr("Start server")); BtnNetSvrStart->setMinimumWidth(180); QString serverPath = bindir->absolutePath() + "/hedgewars-server"; -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN serverPath += + ".exe"; #endif QFile server(serverPath); diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/ui/page/pagevideos.cpp --- a/QTfrontend/ui/page/pagevideos.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/ui/page/pagevideos.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -414,7 +414,7 @@ setName(item, newName); } } -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN // there is a bug in qt, QDir::rename() doesn't fail on such names but damages files if (newName.contains(QRegExp("[\"*:<>?\\/|]"))) { diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/ui/widget/feedbackdialog.cpp --- a/QTfrontend/ui/widget/feedbackdialog.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/ui/widget/feedbackdialog.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -34,7 +34,7 @@ #include -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN #define WINVER 0x0500 #include #else @@ -42,7 +42,7 @@ #include #endif -#ifdef Q_WS_MAC +#ifdef Q_OS_MAC #include #ifndef _SC_NPROCESSORS_ONLN #define _SC_NPROCESSORS_ONLN 58 @@ -207,7 +207,7 @@ QString processor_name = "Processor: "; // platform specific code -#ifdef Q_WS_MACX +#ifdef Q_OS_MACX number_of_cores += QString::number(sysconf(_SC_NPROCESSORS_ONLN)) + "\n"; uint64_t memsize; @@ -240,7 +240,7 @@ default: os_version += "\"Unknown version\"\n"; break; } #endif -#ifdef Q_WS_WIN +#ifdef Q_OS_WIN SYSTEM_INFO sysinfo; GetSystemInfo(&sysinfo); number_of_cores += QString::number(sysinfo.dwNumberOfProcessors) + "\n"; @@ -262,7 +262,7 @@ } kernel_line += "Windows kernel\n"; #endif -#ifdef Q_WS_X11 +#ifdef Q_OS_X11 number_of_cores += QString::number(sysconf(_SC_NPROCESSORS_ONLN)) + "\n"; long pages = sysconf(_SC_PHYS_PAGES), /* @@ -277,7 +277,7 @@ #endif // uname -a -#if defined(Q_WS_X11) || defined(Q_WS_MACX) +#if defined(Q_OS_X11) || defined(Q_OS_MAC) QProcess *process = new QProcess(); QStringList arguments = QStringList("-a"); process->start("uname", arguments); @@ -286,7 +286,7 @@ delete process; #endif -#if (!defined(Q_WS_MACX) && defined(__i386__)) || defined(__x86_64__) +#if (!defined(Q_OS_MAC) && defined(__i386__)) || defined(__x86_64__) // cpu info quint32 registers[4]; quint32 i; diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/ui/widget/roomnameprompt.cpp --- a/QTfrontend/ui/widget/roomnameprompt.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/ui/widget/roomnameprompt.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -62,7 +62,7 @@ QPushButton * btnOkay = new QPushButton(tr("Create room")); connect(btnCancel, SIGNAL(clicked()), this, SLOT(reject())); connect(btnOkay, SIGNAL(clicked()), this, SLOT(accept())); -#ifdef Q_WS_MAC +#ifdef Q_OS_MAC buttonLayout->addWidget(btnCancel); buttonLayout->addWidget(btnOkay); #else diff -r b2f02b083374 -r 67334acaaac7 QTfrontend/ui/widget/seedprompt.cpp --- a/QTfrontend/ui/widget/seedprompt.cpp Sun Jun 09 22:24:41 2013 +0400 +++ b/QTfrontend/ui/widget/seedprompt.cpp Thu Jun 06 15:55:10 2013 +0200 @@ -62,7 +62,7 @@ QPushButton * btnOkay = new QPushButton(tr("Set seed")); connect(btnCancel, SIGNAL(clicked()), this, SLOT(reject())); connect(btnOkay, SIGNAL(clicked()), this, SLOT(accept())); -#ifdef Q_WS_MAC +#ifdef Q_OS_MAC buttonLayout->addWidget(btnCancel); buttonLayout->addWidget(btnOkay); #else