┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLaurent Montel <[email protected]>2007-01-17 13:03:29 +0000
committerLaurent Montel <[email protected]>2007-01-17 13:03:29 +0000
commit4db903c6709b8c0dd47df54f84070d6adf0e4a25 (patch)
treec41c3e7822271506c5856e5741ea3f688328031c /src
parent04a0cad4c84197b3ddd66a89b8277f1db565efd6 (diff)
Fix signal/slot
svn path=/trunk/playground/utils/dolphin/; revision=624604
Diffstat (limited to 'src')
-rw-r--r--src/undomanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/undomanager.cpp b/src/undomanager.cpp
index eb1ce0f37..c4d4f2f87 100644
--- a/src/undomanager.cpp
+++ b/src/undomanager.cpp
@@ -215,8 +215,8 @@ void UndoManager::undo(DolphinMainWindow* mainWindow)
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, mainWindow);
}