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:
Erik Verbruggen
2012-02-15 10:42:41 +01:00
parent 9a9ba12028
commit 3fa55b7ab9
2353 changed files with 7872 additions and 7873 deletions

View File

@@ -32,8 +32,8 @@
#include "aggregate.h"
#include <QtCore/QWriteLocker>
#include <QtCore/QDebug>
#include <QWriteLocker>
#include <QDebug>
/*!
\namespace Aggregation

View File

@@ -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 {

View File

@@ -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

View File

@@ -32,7 +32,7 @@
#include "main.h"
#include <QtGui/QApplication>
#include <QApplication>
MyMain::MyMain(QWidget *parent, Qt::WFlags flags)
: QWidget(parent, flags)

View File

@@ -38,7 +38,7 @@
#include <aggregate.h>
#include <QtGui/QWidget>
#include <QWidget>
class MyMain : public QWidget
{

View File

@@ -35,7 +35,7 @@
#include <aggregate.h>
#include <QtCore/QString>
#include <QString>
class IComboEntry : public QObject
{