forked from qt-creator/qt-creator
Fix for Qt5 compilation
Removed module names from #include directives. Change-Id: I4140f432fc70035ae01e2619d1ae69394fa8617f Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
This commit is contained in:
committed by
Kai Koehne
parent
57092dc5fb
commit
a42ad61ab4
@@ -39,8 +39,8 @@
|
|||||||
|
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
#include <QtGui/QMenu>
|
#include <QMenu>
|
||||||
#include <QtGui/QKeyEvent>
|
#include <QKeyEvent>
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -35,8 +35,8 @@
|
|||||||
|
|
||||||
#include "consoleitemmodel.h"
|
#include "consoleitemmodel.h"
|
||||||
|
|
||||||
#include <QtGui/QTextEdit>
|
#include <QTextEdit>
|
||||||
#include <QtCore/QModelIndex>
|
#include <QModelIndex>
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -34,8 +34,8 @@
|
|||||||
#include "consoleeditor.h"
|
#include "consoleeditor.h"
|
||||||
#include "qmlengine.h"
|
#include "qmlengine.h"
|
||||||
|
|
||||||
#include <QtGui/QPainter>
|
#include <QPainter>
|
||||||
#include <QtGui/QTreeView>
|
#include <QTreeView>
|
||||||
|
|
||||||
const char CONSOLE_LOG_BACKGROUND_COLOR[] = "#2378B7";
|
const char CONSOLE_LOG_BACKGROUND_COLOR[] = "#2378B7";
|
||||||
const char CONSOLE_WARNING_BACKGROUND_COLOR[] = "#E6CD49";
|
const char CONSOLE_WARNING_BACKGROUND_COLOR[] = "#E6CD49";
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
#define CONSOLEITEMMODEL_H
|
#define CONSOLEITEMMODEL_H
|
||||||
|
|
||||||
#include <QAbstractItemModel>
|
#include <QAbstractItemModel>
|
||||||
#include <QtGui/QItemSelectionModel>
|
#include <QItemSelectionModel>
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -35,9 +35,9 @@
|
|||||||
#include "consoleitemmodel.h"
|
#include "consoleitemmodel.h"
|
||||||
#include "debuggerinternalconstants.h"
|
#include "debuggerinternalconstants.h"
|
||||||
|
|
||||||
#include <QtGui/QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QtGui/QProxyStyle>
|
#include <QProxyStyle>
|
||||||
#include <QtGui/QPainter>
|
#include <QPainter>
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
#ifndef CONSOLETREEVIEW_H
|
#ifndef CONSOLETREEVIEW_H
|
||||||
#define CONSOLETREEVIEW_H
|
#define CONSOLETREEVIEW_H
|
||||||
|
|
||||||
#include <QtGui/QTreeView>
|
#include <QTreeView>
|
||||||
|
|
||||||
namespace Debugger {
|
namespace Debugger {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#include "consoleitemmodel.h"
|
#include "consoleitemmodel.h"
|
||||||
#include <debugger/debuggerconstants.h>
|
#include <debugger/debuggerconstants.h>
|
||||||
#include <QtGui/QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QToolButton;
|
class QToolButton;
|
||||||
|
|||||||
Reference in New Issue
Block a user