┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2006-12-08 23:52:00 +0000
committerPeter Penz <[email protected]>2006-12-08 23:52:00 +0000
commit4b0293e22ea169b0f8493644f2c4e8ef80e4e8fe (patch)
tree59241362bb8d485d5879f567c8eb3ad20c01edb3
parentd8669c68e40a6571dfcbdf38e3281a4aeb8c2be6 (diff)
connect to the 'urlChanged' signal (the signal 'signalUrlChanged' is not available anymore)
svn path=/trunk/playground/utils/dolphin/; revision=611620
-rw-r--r--src/infosidebarpage.cpp2
1 files changed, 1 insertions, 1 deletions
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();