1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

connect to the 'urlChanged' signal (the signal 'signalUrlChanged' is not available anymore)

svn path=/trunk/playground/utils/dolphin/; revision=611620
This commit is contained in:
Peter Penz 2006-12-08 23:52:00 +00:00
parent d8669c68e4
commit 4b0293e22e

View File

@ -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();