deleteThread and downloadThread threads are handled better and destructed in a cleaner way

This commit is contained in:
Christophe Dumez
2007-03-09 18:11:43 +00:00
parent 84fef00349
commit 825c874718
2 changed files with 29 additions and 5 deletions

View File

@@ -37,6 +37,10 @@ class deleteThread : public QThread {
start();
}
~deleteThread(){
wait();
}
signals:
void deletionFinished(deleteThread*) const;