summaryrefslogtreecommitdiff
path: root/src/history/historypanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/history/historypanel.h')
-rw-r--r--src/history/historypanel.h14
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;
};