diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-19 19:08:01 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-19 19:08:01 -0400 |
commit | bc64261d2902cf5e9342c9013d2fe028c3ffd440 (patch) | |
tree | f92bd53642e09d2cfbd361b4b6a260539c7d620a /externals/qhexedit/qhexedit_p.h | |
parent | 0db986d92aa06774cf954964cfe5834eac9e09f1 (diff) | |
parent | 90f23020f53c94dab800f7348877aae483974512 (diff) |
Merge pull request #60 from xsacha/qt5
Use Qt5 by default for citra-qt project.
Diffstat (limited to 'externals/qhexedit/qhexedit_p.h')
-rw-r--r-- | externals/qhexedit/qhexedit_p.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/externals/qhexedit/qhexedit_p.h b/externals/qhexedit/qhexedit_p.h index 138139b90..1c2c11cc2 100644 --- a/externals/qhexedit/qhexedit_p.h +++ b/externals/qhexedit/qhexedit_p.h @@ -5,6 +5,9 @@ #include <QtGui> +#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) +#include <QtWidgets> +#endif #include "xbytearray.h" class QHexEditPrivate : public QWidget |