Skip to content

Commit

Permalink
Fix qt 5.11 (#422)
Browse files Browse the repository at this point in the history
Header fixes for Qt 5.11
  • Loading branch information
Guillaumito committed Jul 6, 2018
1 parent 10cee60 commit 06a816c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 0 additions & 2 deletions yabause/src/qt/ui/UICheatRaw.cpp
Expand Up @@ -20,8 +20,6 @@
#include "UIHexInput.h"
#include "../QtYabause.h"

#include <QButtonGroup>

UICheatRaw::UICheatRaw( QWidget* p )
: QDialog( p )
{
Expand Down
2 changes: 1 addition & 1 deletion yabause/src/qt/ui/UICheatRaw.h
Expand Up @@ -21,7 +21,7 @@

#include "ui_UICheatRaw.h"

class QButtonGroup;
#include <QButtonGroup>

class UICheatRaw : public QDialog, public Ui::UICheatRaw
{
Expand Down
2 changes: 2 additions & 0 deletions yabause/src/qt/ui/UICheats.cpp
Expand Up @@ -21,6 +21,8 @@
#include "UICheatRaw.h"
#include "../CommonDialogs.h"

#include <QButtonGroup>

UICheats::UICheats( QWidget* p )
: QDialog( p )
{
Expand Down
2 changes: 2 additions & 0 deletions yabause/src/qt/ui/UIHexInput.h
Expand Up @@ -22,6 +22,8 @@
#include "ui_UIHexInput.h"
#include "../QtYabause.h"

#include <QValidator>

class HexValidator : public QValidator
{
Q_OBJECT
Expand Down

0 comments on commit 06a816c

Please sign in to comment.