From 4ce1a7eda2a380f1c53d06cb5e9aefd6fb92e6bf Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 1 Aug 2007 18:03:58 +0000 Subject: [PATCH] - Fixed deleteThread connect slot --- src/deleteThread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deleteThread.h b/src/deleteThread.h index 9b0dcb36a..89d21d6b5 100644 --- a/src/deleteThread.h +++ b/src/deleteThread.h @@ -112,8 +112,8 @@ class deleteThread : public QThread { mutex.unlock(); subDeleteThread *st = new subDeleteThread(0, path); subThreads << st; - connect(st, SIGNAL(deletionSuccessST(subDownloadThread*, QString)), this, SLOT(propagateDeletionSuccess(subDeleteThread*, QString))); - connect(st, SIGNAL(deletionFailureST(subDownloadThread*, QString)), this, SLOT(propagateDeletionFailure(subDeleteThread*, QString))); + connect(st, SIGNAL(deletionSuccessST(subDeleteThread*, QString)), this, SLOT(propagateDeletionSuccess(subDeleteThread*, QString))); + connect(st, SIGNAL(deletionFailureST(subDeleteThread*, QString)), this, SLOT(propagateDeletionFailure(subDeleteThread*, QString))); st->start(); }else{ condition.wait(&mutex);