diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-06-27 14:24:17 +1000 |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-06-27 14:24:17 +1000 |
commit | 723d06c80b85d85a726b2179a84d26b8688fd49c (patch) | |
tree | 62a00186dc57a2efd877b2caf989d767ff2d1804 | |
parent | 4b6ab00e6d68c7f7d25df329c1b530c4b5fc2abf (diff) |
Fixed compile on Unix.
Fixes error:
src/gui/kernel/qevent_p.h:62: error: invalid use of incomplete type ‘struct QKeyEvent’
-rw-r--r-- | src/gui/kernel/qevent_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/kernel/qevent_p.h b/src/gui/kernel/qevent_p.h index ba0159f3ef..8a2bb05933 100644 --- a/src/gui/kernel/qevent_p.h +++ b/src/gui/kernel/qevent_p.h @@ -43,6 +43,7 @@ #define QEVENT_P_H #include <QtCore/qglobal.h> +#include <QtGui/qevent.h> QT_BEGIN_NAMESPACE |