diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-11-24 02:13:31 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-11-24 02:13:31 +0100 |
commit | fb8b9a3e3f8d0829e830d6d398087145c5f42d6e (patch) | |
tree | c875440fa4506000976216e4c36f4a94d4ff3d70 /src/sidepanel.cpp | |
parent | rekonq 0.3.12 (diff) | |
download | rekonq-fb8b9a3e3f8d0829e830d6d398087145c5f42d6e.tar.xz |
Created a new history dir and changed "panelhistory" terms in
the more English "HistoryPanel" ones
Diffstat (limited to 'src/sidepanel.cpp')
-rw-r--r-- | src/sidepanel.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sidepanel.cpp b/src/sidepanel.cpp index 6e47f7db..7c42301c 100644 --- a/src/sidepanel.cpp +++ b/src/sidepanel.cpp @@ -33,21 +33,21 @@ #include "rekonq.h" // Local Includes -#include "panelhistory.h" +#include "historypanel.h" SidePanel::SidePanel(const QString &title, QWidget *parent, Qt::WindowFlags flags) : QDockWidget(title, parent, flags) - , m_panelHistory(new PanelHistory(this)) + , m_historyPanel(new HistoryPanel(this)) { setObjectName("sidePanel"); setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); setShown(ReKonfig::showSideBar()); - connect(m_panelHistory, SIGNAL(openUrl(const KUrl&)), this, SIGNAL(openUrl(const KUrl&))); + connect(m_historyPanel, SIGNAL(openUrl(const KUrl&)), this, SIGNAL(openUrl(const KUrl&))); - setWidget(m_panelHistory); + setWidget(m_historyPanel); } @@ -56,5 +56,5 @@ SidePanel::~SidePanel() // Save side panel's state ReKonfig::setShowSideBar(!isHidden()); - delete m_panelHistory; + delete m_historyPanel; } |