From fb8b9a3e3f8d0829e830d6d398087145c5f42d6e Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Tue, 24 Nov 2009 02:13:31 +0100 Subject: Created a new history dir and changed "panelhistory" terms in the more English "HistoryPanel" ones --- src/sidepanel.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/sidepanel.cpp') 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; } -- cgit v1.2.1