diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 03:15:17 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-04-28 03:15:17 +0200 |
commit | 1758686ac4b3c1a2ebf9bc88158f7cf1ccb1e8e9 (patch) | |
tree | 392cb389ceafdf97d5b0bf475cf3ff0ec4f867c0 /src/sidepanel.cpp | |
parent | kdialog fixes (diff) | |
parent | TabBar context menu fix ported (diff) | |
download | rekonq-1758686ac4b3c1a2ebf9bc88158f7cf1ccb1e8e9.tar.xz |
Merge commit 'avaddon/master' into MERGING
Diffstat (limited to 'src/sidepanel.cpp')
-rw-r--r-- | src/sidepanel.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/sidepanel.cpp b/src/sidepanel.cpp index c4ba6c2a..7156c3d5 100644 --- a/src/sidepanel.cpp +++ b/src/sidepanel.cpp @@ -36,9 +36,10 @@ SidePanel::SidePanel(const QString &title, QWidget *parent, Qt::WindowFlags flag setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); setShown(ReKonfig::showSideBar()); - - connect(m_panelHistory, SIGNAL(openUrl(const KUrl&)), this, SIGNAL(openUrl(const KUrl&))); - + + connect(m_panelHistory, SIGNAL(openUrl(const KUrl &, Rekonq::OpenType)), + this, SIGNAL(openUrl(const KUrl &, Rekonq::OpenType))); + setWidget(m_panelHistory); } @@ -47,7 +48,7 @@ SidePanel::~SidePanel() { // Save side panel's state ReKonfig::setShowSideBar(!isHidden()); - + delete m_panelHistory; } |