summaryrefslogtreecommitdiff
path: root/src/plugins/welcome
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-03-24 10:43:01 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-03-24 10:43:01 +0100
commit8a58a2fe71c36a233f5d056aba6c588f24fd2f87 (patch)
tree5529590df92f411101d4793bf5f2f776b99d47e0 /src/plugins/welcome
parentc750facb7767ea5a89122a0761d4d7bccbe7f12a (diff)
downloadqt-creator-8a58a2fe71c36a233f5d056aba6c588f24fd2f87.tar.gz
Header cleaning mainly in find/cpaster.
Diffstat (limited to 'src/plugins/welcome')
-rw-r--r--src/plugins/welcome/communitywelcomepagewidget.cpp1
-rw-r--r--src/plugins/welcome/communitywelcomepagewidget.h4
-rw-r--r--src/plugins/welcome/rssfetcher.h4
3 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/welcome/communitywelcomepagewidget.cpp b/src/plugins/welcome/communitywelcomepagewidget.cpp
index a8548d29fd..396ca338c5 100644
--- a/src/plugins/welcome/communitywelcomepagewidget.cpp
+++ b/src/plugins/welcome/communitywelcomepagewidget.cpp
@@ -33,6 +33,7 @@
#include "rssfetcher.h"
#include <QtCore/QMap>
+#include <QtCore/QUrl>
#include <QtGui/QDesktopServices>
#include <QtGui/QTreeWidgetItem>
diff --git a/src/plugins/welcome/communitywelcomepagewidget.h b/src/plugins/welcome/communitywelcomepagewidget.h
index d818e3074f..228ff5ccc2 100644
--- a/src/plugins/welcome/communitywelcomepagewidget.h
+++ b/src/plugins/welcome/communitywelcomepagewidget.h
@@ -30,7 +30,7 @@
#ifndef COMMUNITYWELCOMEPAGEWIDGET_H
#define COMMUNITYWELCOMEPAGEWIDGET_H
-#include <QWidget>
+#include <QtGui/QWidget>
namespace Welcome {
namespace Internal {
@@ -46,7 +46,7 @@ class CommunityWelcomePageWidget : public QWidget
Q_OBJECT
public:
- CommunityWelcomePageWidget(QWidget *parent = 0);
+ explicit CommunityWelcomePageWidget(QWidget *parent = 0);
~CommunityWelcomePageWidget();
private slots:
diff --git a/src/plugins/welcome/rssfetcher.h b/src/plugins/welcome/rssfetcher.h
index e5fc508e44..e046eead0b 100644
--- a/src/plugins/welcome/rssfetcher.h
+++ b/src/plugins/welcome/rssfetcher.h
@@ -30,12 +30,12 @@
#ifndef RSSFETCHER_H
#define RSSFETCHER_H
-#include <QtCore/QUrl>
#include <QtCore/QXmlStreamReader>
#include <QtNetwork/QNetworkAccessManager>
QT_BEGIN_NAMESPACE
class QNetworkReply;
+class QUrl;
QT_END_NAMESPACE
namespace Welcome {
@@ -45,7 +45,7 @@ class RSSFetcher : public QObject
{
Q_OBJECT
public:
- RSSFetcher(int maxItems, QObject *parent = 0);
+ explicit RSSFetcher(int maxItems, QObject *parent = 0);
signals:
void newsItemReady(const QString& title, const QString& desciption, const QString& url);