diff options
author | Erik Verbruggen <[email protected]> | 2012-02-15 10:42:41 +0100 |
---|---|---|
committer | Erik Verbruggen <[email protected]> | 2012-02-15 16:24:46 +0100 |
commit | 3fa55b7ab9b1d6ae10fac1c9bcc653e9000157f8 (patch) | |
tree | e31dbd1b4605530e59c9864166f155b4edabc721 /src/tools/qtcdebugger | |
parent | 9a9ba12028ab0a6b1a248be612d5c576d39f69d6 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/tools/qtcdebugger')
-rw-r--r-- | src/tools/qtcdebugger/main.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/tools/qtcdebugger/main.cpp b/src/tools/qtcdebugger/main.cpp index 4090f8a0447..7259721bab9 100644 --- a/src/tools/qtcdebugger/main.cpp +++ b/src/tools/qtcdebugger/main.cpp @@ -36,17 +36,17 @@ * See usage() on how to install/use. * Installs itself in the bin directory of Qt Creator. */ -#include <QtGui/QApplication> -#include <QtGui/QMessageBox> -#include <QtCore/QDebug> -#include <QtCore/QTextStream> -#include <QtCore/QFileInfo> -#include <QtCore/QByteArray> -#include <QtCore/QString> -#include <QtCore/QDir> -#include <QtCore/QTime> -#include <QtCore/QProcess> -#include <QtGui/QPushButton> +#include <QApplication> +#include <QMessageBox> +#include <QDebug> +#include <QTextStream> +#include <QFileInfo> +#include <QByteArray> +#include <QString> +#include <QDir> +#include <QTime> +#include <QProcess> +#include <QPushButton> #include "registryaccess.h" |