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

fix signal names

svn path=/trunk/playground/utils/dolphin/; revision=613749
This commit is contained in:
Dominik Haumann 2006-12-15 00:04:41 +00:00
parent 1547891be2
commit 3bd97ea34c
2 changed files with 2 additions and 2 deletions

View File

@ -242,7 +242,7 @@ void BookmarksSidebarPage::connectToActiveView()
{
DolphinView* view = mainWindow()->activeView();
adjustSelection(view->url());
connect(view, SIGNAL(signalUrlChanged(const KUrl&)),
connect(view, SIGNAL(urlChanged(const KUrl&)),
this, SLOT(slotUrlChanged(const KUrl&)));
}

View File

@ -60,7 +60,7 @@ DolphinStatusBar::DolphinStatusBar(DolphinView* parent) :
setMinimumHeight(size.height());
m_messageLabel->setMinimumTextHeight(size.height());
connect(parent, SIGNAL(signalUrlChanged(const KUrl&)),
connect(parent, SIGNAL(urlChanged(const KUrl&)),
this, SLOT(slotUrlChanged(const KUrl&)));
}