]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Fix signal/slot
authorLaurent Montel <montel@kde.org>
Wed, 17 Jan 2007 13:03:29 +0000 (13:03 +0000)
committerLaurent Montel <montel@kde.org>
Wed, 17 Jan 2007 13:03:29 +0000 (13:03 +0000)
svn path=/trunk/playground/utils/dolphin/; revision=624604

src/undomanager.cpp

index eb1ce0f376be54a60fdde9491760dd4eb914a6a5..c4d4f2f870aa515cd103e6a878e778a9ca997e16 100644 (file)
@@ -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);
         }