summaryrefslogtreecommitdiff
path: root/src/history
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-14 10:39:36 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-14 10:39:36 +0200
commit6a5f7762fa7e2876d63c4adb9a1842acef0c7333 (patch)
tree85b7235eacb17121ffaa1cd3a4efebade84639e4 /src/history
parentFinally cleaning Application class, getting rid of loadUrl(string) slot (diff)
downloadrekonq-6a5f7762fa7e2876d63c4adb9a1842acef0c7333.tar.xz
Stupid commit :)
Renamed urltreeview files to paneltreeviews one to let my konsole tab completion easily work. Blame me for this..
Diffstat (limited to 'src/history')
-rw-r--r--src/history/historypanel.cpp4
-rw-r--r--src/history/historypanel.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp
index 87b5fe55..8c36dfa8 100644
--- a/src/history/historypanel.cpp
+++ b/src/history/historypanel.cpp
@@ -52,8 +52,8 @@
HistoryPanel::HistoryPanel(const QString &title, QWidget *parent, Qt::WindowFlags flags)
- : QDockWidget(title, parent, flags),
- m_treeView(new UrlTreeView(this))
+ : QDockWidget(title, parent, flags)
+ , m_treeView(new PanelTreeView(this))
{
setup();
setShown(ReKonfig::showHistoryPanel());
diff --git a/src/history/historypanel.h b/src/history/historypanel.h
index 0c01189c..a4dfaf64 100644
--- a/src/history/historypanel.h
+++ b/src/history/historypanel.h
@@ -32,7 +32,7 @@
// Local Includes
#include "rekonqprivate_export.h"
#include "application.h"
-#include "urltreeview.h"
+#include "paneltreeview.h"
// Qt Includes
#include <QDockWidget>
@@ -62,7 +62,7 @@ private slots:
private:
void setup();
- UrlTreeView *m_treeView;
+ PanelTreeView *m_treeView;
};
#endif // HISTORYPANEL_H