diff options
author | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-30 00:05:47 +0200 |
---|---|---|
committer | Jon Ander Peñalba <jonan88@gmail.com> | 2010-08-30 16:58:35 +0200 |
commit | 51ef0020a78bd216cb357eaa574161299fa0b608 (patch) | |
tree | 9c5f7ef427b79eaa3df14cf030a646e9508da043 /src/history/historypanel.h | |
parent | Merge branch 'master' of gitorious.org:rekonq/mainline (diff) | |
download | rekonq-51ef0020a78bd216cb357eaa574161299fa0b608.tar.xz |
Use the same FilterProxyModel for the bookmarks and history panels
Diffstat (limited to 'src/history/historypanel.h')
-rw-r--r-- | src/history/historypanel.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/history/historypanel.h b/src/history/historypanel.h index 68de2828..5a511e47 100644 --- a/src/history/historypanel.h +++ b/src/history/historypanel.h @@ -32,17 +32,11 @@ // Rekonq Includes #include "rekonq_defines.h" -// Local Includes -#include "application.h" -#include "paneltreeview.h" - // Qt Includes #include <QDockWidget> // Forward Declarations -class KUrl; -class QWidget; -class QModelIndex; +class PanelTreeView; class REKONQ_TESTS_EXPORT HistoryPanel : public QDockWidget @@ -51,11 +45,11 @@ class REKONQ_TESTS_EXPORT HistoryPanel : public QDockWidget public: explicit HistoryPanel(const QString &title, QWidget *parent = 0, Qt::WindowFlags flags = 0); - ~HistoryPanel(); + virtual ~HistoryPanel(); public slots: void showing(bool); - + signals: void openUrl(const KUrl &, const Rekonq::OpenType &); void itemHovered(const QString &); @@ -67,8 +61,8 @@ private slots: private: void setup(); - PanelTreeView *m_treeView; + PanelTreeView *m_treeView; bool _loaded; }; |