Skip to content

Commit

Permalink
Fix includes to be compatible with Qt5.
Browse files Browse the repository at this point in the history
This change is Qt4/Qt5 neutral.
  • Loading branch information
f3nix authored and wwmayer committed Apr 15, 2016
1 parent e797054 commit 81b5932
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Gui/DAGView/DAGView.h
Expand Up @@ -25,7 +25,7 @@

#include <memory>

#include <QtGui/QGraphicsView>
#include <QGraphicsView>

#include <Gui/DockWindow.h>
#include <Gui/Document.h>
Expand Down
2 changes: 1 addition & 1 deletion src/Gui/DlgCheckableMessageBox.cpp
Expand Up @@ -35,7 +35,7 @@
#include "DlgCheckableMessageBox.h"
#include "ui_DlgCheckableMessageBox.h"

#include <QtGui/QPushButton>
#include <QPushButton>
#include <QtCore/QDebug>

#include "MainWindow.h"
Expand Down
6 changes: 3 additions & 3 deletions src/Gui/DlgCheckableMessageBox.h
Expand Up @@ -32,9 +32,9 @@

//#include "utils_global.h"

#include <QtGui/QDialogButtonBox>
#include <QtGui/QMessageBox>
#include <QtGui/QDialog>
#include <QDialogButtonBox>
#include <QMessageBox>
#include <QDialog>

namespace Gui {
namespace Dialog {
Expand Down

0 comments on commit 81b5932

Please sign in to comment.