diff options
author | Oliver Gutbrod <ext-oliver.gutbrod@nokia.com> | 2010-10-20 12:04:28 (GMT) |
---|---|---|
committer | Oliver Gutbrod <ext-oliver.gutbrod@nokia.com> | 2010-10-20 12:34:39 (GMT) |
commit | d493a575565f5ccbe755a95df60f657d0a384f6c (patch) | |
tree | 43962d8c84b6008dcf2c4489408ad1303c2a6365 /src/gui/widgets | |
parent | de7963fb4aff704b7ee5fb0bcecdec8abc228cdb (diff) | |
download | Qt-d493a575565f5ccbe755a95df60f657d0a384f6c.zip Qt-d493a575565f5ccbe755a95df60f657d0a384f6c.tar.gz Qt-d493a575565f5ccbe755a95df60f657d0a384f6c.tar.bz2 |
windef.h needs to be include before types.h for Windows Embedded 7
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/qmenu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/widgets/qmenu.h b/src/gui/widgets/qmenu.h index 7708e05..77f3b1a 100644 --- a/src/gui/widgets/qmenu.h +++ b/src/gui/widgets/qmenu.h @@ -51,6 +51,10 @@ #include <QtGui/qpixmap.h> #endif +#ifdef Q_WS_WINCE +#include <windef.h> // for HMENU +#endif + QT_BEGIN_HEADER QT_BEGIN_NAMESPACE |