mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +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:
parent
d10a48be32
commit
e02058b803
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue