1
0
mirror of https://invent.kde.org/system/dolphin synced 2024-07-04 17:30:55 +00:00

Fix signal/slot

svn path=/trunk/playground/utils/dolphin/; revision=624604
This commit is contained in:
Laurent Montel 2007-01-17 13:03:29 +00:00
parent 04a0cad4c8
commit 4db903c670

View 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);
}