- Updated TODO / Changelog

- Added a signal to the deleteThead for future use
- Started coding of a bittorrent class to split GUI/BT (still unused)
This commit is contained in:
Christophe Dumez
2007-03-05 13:55:23 +00:00
parent 330f3ab033
commit 11a146a796
5 changed files with 559 additions and 4 deletions

View File

@@ -27,6 +27,7 @@
#include "misc.h"
class deleteThread : public QThread {
Q_OBJECT
private:
QString path;
@@ -36,9 +37,13 @@ class deleteThread : public QThread {
start();
}
signals:
void deletionFinished(deleteThread*) const;
private:
void run(){
misc::removePath(path);
emit deletionFinished(this);
}
};