Browse Source

- Removed useless function

adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
f07b0eed61
  1. 7
      src/bittorrent.cpp
  2. 1
      src/bittorrent.h

7
src/bittorrent.cpp

@ -82,11 +82,6 @@ bittorrent::~bittorrent(){ @@ -82,11 +82,6 @@ bittorrent::~bittorrent(){
delete s;
}
void bittorrent::resumeUnfinishedTorrents(){
// Resume unfinished torrents
resumeUnfinished();
}
void bittorrent::setDownloadLimit(QString hash, int val){
torrent_handle h = getTorrentHandle(hash);
h.set_download_limit(val);
@ -1155,7 +1150,7 @@ void bittorrent::applyEncryptionSettings(pe_settings se){ @@ -1155,7 +1150,7 @@ void bittorrent::applyEncryptionSettings(pe_settings se){
// Will fast resume unfinished torrents in
// backup directory
void bittorrent::resumeUnfinished(){
void bittorrent::resumeUnfinishedTorrents(){
qDebug("Resuming unfinished torrents");
QDir torrentBackup(misc::qBittorrentPath() + "BT_backup");
QStringList fileNames, filePaths;

1
src/bittorrent.h

@ -129,7 +129,6 @@ class bittorrent : public QObject{ @@ -129,7 +129,6 @@ class bittorrent : public QObject{
void scanDirectory();
void readAlerts();
void processDownloadedFile(QString, QString);
void resumeUnfinished();
bool loadTrackerFile(QString hash);
void saveTrackerFile(QString hash);

Loading…
Cancel
Save