summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJon Ander Peñalba <jonan88@gmail.com>2010-10-19 20:40:09 +0200
committerJon Ander Peñalba <jonan88@gmail.com>2010-10-19 20:40:09 +0200
commitb0d83c63ef169f18ecdb5d28575ad7f76c3881fc (patch)
treec4430b5e018a9e9f0cbd868893def877d7ae51eb /src
parentcan not -> cannot (diff)
downloadrekonq-b0d83c63ef169f18ecdb5d28575ad7f76c3881fc.tar.xz
Minor clean-up to the UrlPanel class
Diffstat (limited to 'src')
-rw-r--r--src/urlfilterproxymodel.h5
-rw-r--r--src/urlpanel.cpp5
-rw-r--r--src/urlpanel.h24
3 files changed, 14 insertions, 20 deletions
diff --git a/src/urlfilterproxymodel.h b/src/urlfilterproxymodel.h
index 06592c27..a456a21e 100644
--- a/src/urlfilterproxymodel.h
+++ b/src/urlfilterproxymodel.h
@@ -39,16 +39,15 @@
/**
* QSortFilterProxyModel hides all children which parent doesn't
* match the filter. This class is used to change this behavior.
- * If a url matches the filter it'll be shown,
+ * If a url matches the filter it'll be shown,
* even if it's parent doesn't match it.
- *
*/
class REKONQ_TESTS_EXPORT UrlFilterProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
- UrlFilterProxyModel(QObject *parent = 0);
+ explicit UrlFilterProxyModel(QObject *parent = 0);
protected:
virtual bool filterAcceptsRow(const int source_row, const QModelIndex &source_parent) const;
diff --git a/src/urlpanel.cpp b/src/urlpanel.cpp
index 8753038c..b3e8b2f3 100644
--- a/src/urlpanel.cpp
+++ b/src/urlpanel.cpp
@@ -54,11 +54,6 @@ UrlPanel::UrlPanel(const QString &title, QWidget *parent, Qt::WindowFlags flags)
}
-UrlPanel::~UrlPanel()
-{
-}
-
-
void UrlPanel::showing(bool b)
{
if(!_loaded && b)
diff --git a/src/urlpanel.h b/src/urlpanel.h
index 2bf1c3fe..722eeae0 100644
--- a/src/urlpanel.h
+++ b/src/urlpanel.h
@@ -33,7 +33,7 @@
#include "rekonq_defines.h"
// Qt Includes
-#include <QDockWidget>
+#include <QtGui/QDockWidget>
// Forward Declarations
class PanelTreeView;
@@ -47,25 +47,25 @@ class REKONQ_TESTS_EXPORT UrlPanel : public QDockWidget
public:
explicit UrlPanel(const QString &title, QWidget *parent = 0, Qt::WindowFlags flags = 0);
- virtual ~UrlPanel();
+ virtual ~UrlPanel() {}
+
+Q_SIGNALS:
+ void openUrl(const KUrl &, const Rekonq::OpenType &);
+ void itemHovered(const QString &);
- inline PanelTreeView *panelTreeView() const { return _treeView; };
-
public Q_SLOTS:
void showing(bool);
-protected Q_SLOTS:
- virtual void contextMenuItem(const QPoint &pos) = 0;
- virtual void contextMenuGroup(const QPoint &pos) = 0;
- virtual void contextMenuEmpty(const QPoint &pos) = 0;
-
protected:
virtual void setup();
virtual QAbstractItemModel* getModel() = 0;
-Q_SIGNALS:
- void openUrl(const KUrl &, const Rekonq::OpenType &);
- void itemHovered(const QString &);
+ PanelTreeView* panelTreeView() const {return _treeView;}
+
+protected Q_SLOTS:
+ virtual void contextMenuItem(const QPoint &pos) = 0;
+ virtual void contextMenuGroup(const QPoint &pos) = 0;
+ virtual void contextMenuEmpty(const QPoint &pos) = 0;
private:
PanelTreeView *_treeView;