diff options
| author | Kevin Ottens <[email protected]> | 2006-11-25 17:30:07 +0000 |
|---|---|---|
| committer | Kevin Ottens <[email protected]> | 2006-11-25 17:30:07 +0000 |
| commit | c1af91aab193cf34b36bfacd39805eeaa48e19b1 (patch) | |
| tree | f2f935a43482190706f9054c286a8f42ccb20bef /src/urlnavigatorbutton.cpp | |
| parent | 92d346ae7838668c92643548a84fb2903c08c40d (diff) | |
Let's remove the connect errors because of the KJob/KIO::Job split.
svn path=/trunk/playground/utils/dolphin/; revision=607764
Diffstat (limited to 'src/urlnavigatorbutton.cpp')
| -rw-r--r-- | src/urlnavigatorbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/urlnavigatorbutton.cpp b/src/urlnavigatorbutton.cpp index fab2b81e9..f9c5b407b 100644 --- a/src/urlnavigatorbutton.cpp +++ b/src/urlnavigatorbutton.cpp @@ -282,7 +282,7 @@ void UrlNavigatorButton::startListJob() connect(m_listJob, SIGNAL(entries(KIO::Job*, const KIO::UDSEntryList &)), this, SLOT(entriesList(KIO::Job*, const KIO::UDSEntryList&))); - connect(m_listJob, SIGNAL(result(KIO::Job*)), this, SLOT(listJobFinished(KIO::Job*))); + connect(m_listJob, SIGNAL(result(KJob*)), this, SLOT(listJobFinished(KJob*))); } void UrlNavigatorButton::entriesList(KIO::Job* job, const KIO::UDSEntryList& entries) @@ -330,7 +330,7 @@ void UrlNavigatorButton::entriesList(KIO::Job* job, const KIO::UDSEntryList& ent m_subdirs.sort(); } -void UrlNavigatorButton::listJobFinished(KIO::Job* job) +void UrlNavigatorButton::listJobFinished(KJob* job) { if (job != m_listJob) { return; |
