From e02058b803610114761f86f9350b5cad8ffcb2cd Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Fri, 8 Dec 2006 23:52:00 +0000 Subject: [PATCH] connect to the 'urlChanged' signal (the signal 'signalUrlChanged' is not available anymore) svn path=/trunk/playground/utils/dolphin/; revision=611620 --- dolphin/src/infosidebarpage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphin/src/infosidebarpage.cpp b/dolphin/src/infosidebarpage.cpp index 3a8099d6e1..645300ae6c 100644 --- a/dolphin/src/infosidebarpage.cpp +++ b/dolphin/src/infosidebarpage.cpp @@ -236,7 +236,7 @@ void InfoSidebarPage::connectToActiveView() DolphinView* view = mainWindow()->activeView(); connect(view, SIGNAL(requestItemInfo(const KUrl&)), this, SLOT(requestDelayedItemInfo(const KUrl&))); - connect(view, SIGNAL(signalUrlChanged(const KUrl&)), + connect(view, SIGNAL(urlChanged(const KUrl&)), this, SLOT(requestItemInfo(const KUrl&))); m_shownUrl = view->url();