diff options
author | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-08-13 08:55:49 (GMT) |
---|---|---|
committer | Prasanth Ullattil <prasanth.ullattil@nokia.com> | 2009-08-13 08:58:23 (GMT) |
commit | bf6cf7cd8723f05037c461106e4dc8da75889509 (patch) | |
tree | a12f6025b435206a0c27ffe23b9af96401160e46 /demos | |
parent | bd2cc45fefb024f91f9c0736c5abfe853e49b540 (diff) | |
download | Qt-bf6cf7cd8723f05037c461106e4dc8da75889509.zip Qt-bf6cf7cd8723f05037c461106e4dc8da75889509.tar.gz Qt-bf6cf7cd8723f05037c461106e4dc8da75889509.tar.bz2 |
Fix compiler warning
We need to remove Zm200 from compiler flags before adding Zm1200
Reviewed-by: Marius Storm-Olsen
Diffstat (limited to 'demos')
-rw-r--r-- | demos/boxes/boxes.pro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/demos/boxes/boxes.pro b/demos/boxes/boxes.pro index 33f1f14..59c9132 100644 --- a/demos/boxes/boxes.pro +++ b/demos/boxes/boxes.pro @@ -42,6 +42,8 @@ wince*: { } win32-msvc* { - QMAKE_CXXFLAGS += /Zm1200 - QMAKE_CFLAGS += /Zm1200 + QMAKE_CXXFLAGS -= -Zm200 + QMAKE_CFLAGS -= -Zm200 + QMAKE_CXXFLAGS += -Zm1200 + QMAKE_CFLAGS += -Zm1200 } |