summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools
diff options
context:
space:
mode:
authorDenis Dzyubenko <denis.dzyubenko@nokia.com>2011-03-29 14:28:29 (GMT)
committerDenis Dzyubenko <denis.dzyubenko@nokia.com>2011-03-29 15:18:09 (GMT)
commit96373c2aac8b26b00337fc74a163bb2ff468ef24 (patch)
tree2712070be3db381eeefaf9e95325ccab405c1a13 /src/corelib/tools
parent213609fa5c8b4e701115cfbb117559bc5dba4a54 (diff)
downloadQt-96373c2aac8b26b00337fc74a163bb2ff468ef24.zip
Qt-96373c2aac8b26b00337fc74a163bb2ff468ef24.tar.gz
Qt-96373c2aac8b26b00337fc74a163bb2ff468ef24.tar.bz2
Changed the #ifdef block in QLocale to check for Q_OS_WIN instead of WS.
Reviewed-by: Jeremy Katz
Diffstat (limited to 'src/corelib/tools')
-rw-r--r--src/corelib/tools/qlocale_win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/tools/qlocale_win.cpp b/src/corelib/tools/qlocale_win.cpp
index 3325419..4a21561 100644
--- a/src/corelib/tools/qlocale_win.cpp
+++ b/src/corelib/tools/qlocale_win.cpp
@@ -50,7 +50,7 @@
#include "qdebug.h"
-#if defined(Q_WS_WIN)
+#if defined(Q_OS_WIN)
# include "qt_windows.h"
# include <time.h>
#endif