summaryrefslogtreecommitdiff
path: root/src/urlbar/rsswidget.h
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-30 11:23:37 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-30 11:23:37 +0200
commitc896cc340d7e6e0878b3249c5792e6d88a12cf42 (patch)
treefd0a7a61ff1d07f301f2188de5cb6fa473134897 /src/urlbar/rsswidget.h
parentA tiny improvement in the error page, showing a fat icon.. :) (diff)
downloadrekonq-c896cc340d7e6e0878b3249c5792e6d88a12cf42.tar.xz
A coding style round
Diffstat (limited to 'src/urlbar/rsswidget.h')
-rw-r--r--src/urlbar/rsswidget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/urlbar/rsswidget.h b/src/urlbar/rsswidget.h
index 5c1ca736..253c20f2 100644
--- a/src/urlbar/rsswidget.h
+++ b/src/urlbar/rsswidget.h
@@ -31,22 +31,22 @@
class RSSWidget : public QFrame
{
Q_OBJECT
-
+
public:
// QMap< feedUrl, feedTitle>
RSSWidget(QMap<KUrl, QString> map, QWidget *parent);
-
+
void showAt(QPoint pos);
-
+
public slots:
void accepted();
-
+
private:
void addWithAkregator(QString url);
void addWithGoogleReader(QString url);
-
+
QMap<KUrl, QString> m_map;
-
+
KComboBox *m_agregators;
KComboBox *m_feeds;
};