diff options
author | Andreas Holzammer <andreas.holzammer@kdab.com> | 2012-02-09 09:55:09 +0100 |
---|---|---|
committer | Qt by Nokia <qt-info@nokia.com> | 2012-02-09 10:45:38 +0100 |
commit | ef7fd678457496abc0b2d204c816b10a57816907 (patch) | |
tree | c02027b7abc42f29b0e41395afa2298e01dcd79b /src/widgets/dialogs | |
parent | adfca27ac09cfd87121bb3611d74a75136ea6498 (diff) | |
download | qtbase-ef7fd678457496abc0b2d204c816b10a57816907.tar.gz |
Replace Q_WS_WINCE against Q_OS_WINCE.
Window system Macros where deprecated so use
Q_OS_WINCE for now. This code will need
some refactoring, but this is the first
step to it.
Change-Id: I5876b80ee45d4b38ac63fc7d51e775dc70bbd485
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/widgets/dialogs')
-rw-r--r-- | src/widgets/dialogs/qfiledialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/dialogs/qfiledialog.cpp b/src/widgets/dialogs/qfiledialog.cpp index ecedf8328f..ed5264159f 100644 --- a/src/widgets/dialogs/qfiledialog.cpp +++ b/src/widgets/dialogs/qfiledialog.cpp @@ -59,7 +59,7 @@ #include <qdebug.h> #include <qapplication.h> #include <qstylepainter.h> -#if !defined(Q_WS_WINCE) +#if !defined(Q_OS_WINCE) #include "ui_qfiledialog.h" #else #define Q_EMBEDDED_SMALLSCREEN |