From: Peter Penz Date: Fri, 8 Dec 2006 23:52:00 +0000 (+0000) Subject: connect to the 'urlChanged' signal (the signal 'signalUrlChanged' is not available... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/4b0293e22ea169b0f8493644f2c4e8ef80e4e8fe connect to the 'urlChanged' signal (the signal 'signalUrlChanged' is not available anymore) svn path=/trunk/playground/utils/dolphin/; revision=611620 --- diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index 3a8099d6e..645300ae6 100644 --- a/src/infosidebarpage.cpp +++ b/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();