- Fixed some slots connects in new deleteThread

- Added some debug when pausing torrents
This commit is contained in:
Christophe Dumez
2007-07-31 14:28:17 +00:00
parent d04b9a7f02
commit 58dc75fbcf
2 changed files with 7 additions and 3 deletions

View File

@@ -112,8 +112,8 @@ class deleteThread : public QThread {
mutex.unlock();
subDeleteThread *st = new subDeleteThread(0, path);
subThreads << st;
connect(st, SIGNAL(deletionSuccessST(subDownloadThread*, QString, QString)), this, SLOT(propagateDeletionSuccess(subDeleteThread*, QString)));
connect(st, SIGNAL(deletionFailureST(subDownloadThread*, QString, QString)), this, SLOT(propagateDeletionFailure(subDeleteThread*, QString)));
connect(st, SIGNAL(deletionSuccessST(subDownloadThread*, QString)), this, SLOT(propagateDeletionSuccess(subDeleteThread*, QString)));
connect(st, SIGNAL(deletionFailureST(subDownloadThread*, QString)), this, SLOT(propagateDeletionFailure(subDeleteThread*, QString)));
st->start();
}else{
condition.wait(&mutex);