┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/undomanager.cpp
diff options
context:
space:
mode:
authorKevin Ottens <[email protected]>2006-11-25 17:30:07 +0000
committerKevin Ottens <[email protected]>2006-11-25 17:30:07 +0000
commitc1af91aab193cf34b36bfacd39805eeaa48e19b1 (patch)
treef2f935a43482190706f9054c286a8f42ccb20bef /src/undomanager.cpp
parent92d346ae7838668c92643548a84fb2903c08c40d (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/undomanager.cpp')
-rw-r--r--src/undomanager.cpp6
1 files changed, 3 insertions, 3 deletions
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.