From: Laurent Montel Date: Wed, 17 Jan 2007 13:03:29 +0000 (+0000) Subject: Fix signal/slot X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/4db903c6709b8c0dd47df54f84070d6adf0e4a25 Fix signal/slot svn path=/trunk/playground/utils/dolphin/; revision=624604 --- 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); }