From b28a5a6248059566e16c9fcf887b5545034ba52f Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 11 Apr 2012 16:42:46 +0200 Subject: Minor API-cleanups for DolphinView --- src/dolphinviewcontainer.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/dolphinviewcontainer.cpp') diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp index a6049992f..7b9152d1e 100644 --- a/src/dolphinviewcontainer.cpp +++ b/src/dolphinviewcontainer.cpp @@ -99,8 +99,8 @@ DolphinViewContainer::DolphinViewContainer(const KUrl& url, QWidget* parent) : connect(m_view, SIGNAL(infoMessage(QString)), this, SLOT(showInfoMessage(QString))); connect(m_view, SIGNAL(itemActivated(KFileItem)), this, SLOT(slotItemActivated(KFileItem))); connect(m_view, SIGNAL(redirection(KUrl,KUrl)), this, SLOT(redirect(KUrl,KUrl))); - connect(m_view, SIGNAL(startedDirLoading(KUrl)), this, SLOT(slotStartedDirLoading())); - connect(m_view, SIGNAL(finishedDirLoading(KUrl)), this, SLOT(slotFinishedDirLoading())); + connect(m_view, SIGNAL(dirLoadingStarted()), this, SLOT(slotDirLoadingStarted())); + connect(m_view, SIGNAL(dirLoadingCompleted()), this, SLOT(slotDirLoadingCompleted())); connect(m_view, SIGNAL(itemCountChanged()), this, SLOT(delayedStatusBarUpdate())); connect(m_view, SIGNAL(dirLoadingProgress(int)), this, SLOT(updateDirLoadingProgress(int))); connect(m_view, SIGNAL(dirSortingProgress(int)), this, SLOT(updateSortingProgress(int))); @@ -348,7 +348,7 @@ void DolphinViewContainer::updateSortingProgress(int percent) m_statusBar->setProgress(percent); } -void DolphinViewContainer::slotStartedDirLoading() +void DolphinViewContainer::slotDirLoadingStarted() { if (isSearchUrl(url())) { // Search KIO-slaves usually don't provide any progress information. Give @@ -364,7 +364,7 @@ void DolphinViewContainer::slotStartedDirLoading() } } -void DolphinViewContainer::slotFinishedDirLoading() +void DolphinViewContainer::slotDirLoadingCompleted() { if (!m_statusBar->progressText().isEmpty()) { m_statusBar->setProgressText(QString()); -- cgit v1.3