From 11e1ee53bbd5fcce304c491a3bb0b1641cdef4f2 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Mon, 25 Jan 2010 09:00:51 +0000 Subject: [PATCH] Now *really' open a new tab if the URL navigator requests it... (the previous commit missed this 2 quite important lines). CCBUG: 181223 svn path=/trunk/KDE/kdebase/apps/; revision=1079854 --- src/dolphinmainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 0025513184..fb8143ba38 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -1711,6 +1711,8 @@ void DolphinMainWindow::connectViewSignals(DolphinViewContainer* container) this, SLOT(updateHistory())); connect(navigator, SIGNAL(editableStateChanged(bool)), this, SLOT(slotEditableStateChanged(bool))); + connect(navigator, SIGNAL(tabRequested(const KUrl&)), + this, SLOT(openNewTab(KUrl))); } void DolphinMainWindow::updateSplitAction()