From d493a575565f5ccbe755a95df60f657d0a384f6c Mon Sep 17 00:00:00 2001 From: Oliver Gutbrod Date: Wed, 20 Oct 2010 14:04:28 +0200 Subject: windef.h needs to be include before types.h for Windows Embedded 7 Reviewed-by: Joerg Bornemann --- src/3rdparty/md5/md5.cpp | 1 + src/gui/widgets/qmenu.h | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/3rdparty/md5/md5.cpp b/src/3rdparty/md5/md5.cpp index f32903c..ac296b5 100644 --- a/src/3rdparty/md5/md5.cpp +++ b/src/3rdparty/md5/md5.cpp @@ -24,6 +24,7 @@ #ifndef _WIN32_WCE #include /* for stupid systems */ #else +#include #include #endif 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 #endif +#ifdef Q_WS_WINCE +#include // for HMENU +#endif + QT_BEGIN_HEADER QT_BEGIN_NAMESPACE -- cgit v0.12