From c1af91aab193cf34b36bfacd39805eeaa48e19b1 Mon Sep 17 00:00:00 2001 From: Kevin Ottens Date: Sat, 25 Nov 2006 17:30:07 +0000 Subject: Let's remove the connect errors because of the KJob/KIO::Job split. svn path=/trunk/playground/utils/dolphin/; revision=607764 --- src/undomanager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/undomanager.cpp') diff --git a/src/undomanager.cpp b/src/undomanager.cpp index cf7d97713..4e3ec054b 100644 --- a/src/undomanager.cpp +++ b/src/undomanager.cpp @@ -313,8 +313,8 @@ void UndoManager::redo() if (job != 0) { // Execute the jobs in a synchronous manner and forward the progress // information to the Dolphin statusbar. - connect(job, SIGNAL(percent(KIO::Job*, unsigned long)), - this, SLOT(slotPercent(KIO::Job*, unsigned long))); + connect(job, SIGNAL(percent(KJob*, unsigned long)), + this, SLOT(slotPercent(KJob*, unsigned long))); KIO::NetAccess::synchronousRun(job, &dolphin); } @@ -358,7 +358,7 @@ QString UndoManager::commandText(const DolphinCommand& command) const return text; } -void UndoManager::slotPercent(KIO::Job* /* job */, unsigned long /* percent */) +void UndoManager::slotPercent(KJob* /* job */, unsigned long /* percent */) { // It is not allowed to update the progress indicator in the context // of this slot, hence do an asynchronous triggering. -- cgit v1.3