Browse Source

fixed a bug in last commit

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
0e7c16901c
  1. 2
      src/deleteThread.h

2
src/deleteThread.h

@ -105,7 +105,7 @@ class deleteThread : public QThread { @@ -105,7 +105,7 @@ class deleteThread : public QThread {
if(!torrents_list.empty()){
QPair<QString, arborescence *> torrent = torrents_list.takeFirst();
mutex.unlock();
subDeleteThread *st = new subDeleteThread(this, torrent.first, torrent.second);
subDeleteThread *st = new subDeleteThread(0, torrent.first, torrent.second);
subThreads << st;
connect(st, SIGNAL(deletionSuccessST(subDeleteThread*)), this, SLOT(deleteSubThread(subDeleteThread*)));
//connect(st, SIGNAL(deletionFailureST(subDeleteThread*)), this, SLOT(deleteSubThread(subDeleteThread*)));

Loading…
Cancel
Save