mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 03:39:39 +03:00
- removed no longer needed pointer
- made use of QPointer instead of c++ pointer
This commit is contained in:
parent
cfbd06225b
commit
b984c309ff
1 changed files with 3 additions and 5 deletions
|
@ -37,7 +37,6 @@
|
|||
using namespace libtorrent;
|
||||
|
||||
class downloadThread;
|
||||
class deleteThread;
|
||||
class QTimer;
|
||||
class FilterParserThread;
|
||||
|
||||
|
@ -48,16 +47,15 @@ class bittorrent : public QObject {
|
|||
session *s;
|
||||
QString scan_dir;
|
||||
QPointer<QTimer> timerScan;
|
||||
QTimer *timerAlerts;
|
||||
QTimer *fastResumeSaver;
|
||||
QPointer<QTimer> timerAlerts;
|
||||
QPointer<QTimer> fastResumeSaver;
|
||||
QPointer<QTimer> BigRatioTimer;
|
||||
bool DHTEnabled;
|
||||
downloadThread *downloader;
|
||||
QPointer<downloadThread> downloader;
|
||||
QString defaultSavePath;
|
||||
QHash<QString, QHash<QString, QString> > trackersErrors;
|
||||
QStringList consoleMessages;
|
||||
QStringList peerBanMessages;
|
||||
deleteThread *deleter;
|
||||
QStringList finishedTorrents;
|
||||
QStringList unfinishedTorrents;
|
||||
bool preAllocateAll;
|
||||
|
|
Loading…
Reference in a new issue