forked from qt-creator/qt-creator
Removed module names from #include directives.
Getting the #include directives ready for Qt5. This includes the new-project wizards. Change-Id: Ia9261f1e8faec06b9285b694d2b7e9a095978d2b Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
@@ -32,8 +32,8 @@
|
||||
|
||||
#include "aggregate.h"
|
||||
|
||||
#include <QtCore/QWriteLocker>
|
||||
#include <QtCore/QDebug>
|
||||
#include <QWriteLocker>
|
||||
#include <QDebug>
|
||||
|
||||
/*!
|
||||
\namespace Aggregation
|
||||
|
||||
@@ -35,11 +35,11 @@
|
||||
|
||||
#include "aggregation_global.h"
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QList>
|
||||
#include <QtCore/QHash>
|
||||
#include <QtCore/QReadWriteLock>
|
||||
#include <QtCore/QReadLocker>
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QHash>
|
||||
#include <QReadWriteLock>
|
||||
#include <QReadLocker>
|
||||
|
||||
namespace Aggregation {
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
#ifndef AGGREGATION_GLOBAL_H
|
||||
#define AGGREGATION_GLOBAL_H
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <qglobal.h>
|
||||
|
||||
#if defined(AGGREGATION_LIBRARY)
|
||||
# define AGGREGATION_EXPORT Q_DECL_EXPORT
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
|
||||
#include "main.h"
|
||||
|
||||
#include <QtGui/QApplication>
|
||||
#include <QApplication>
|
||||
|
||||
MyMain::MyMain(QWidget *parent, Qt::WFlags flags)
|
||||
: QWidget(parent, flags)
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
|
||||
#include <aggregate.h>
|
||||
|
||||
#include <QtGui/QWidget>
|
||||
#include <QWidget>
|
||||
|
||||
class MyMain : public QWidget
|
||||
{
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
#include <aggregate.h>
|
||||
|
||||
#include <QtCore/QString>
|
||||
#include <QString>
|
||||
|
||||
class IComboEntry : public QObject
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user