mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -06:00
- 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:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user