mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 16:58:06 -06:00
Use InfoHash type in queueing operations
This avoids redundant type conversions.
This commit is contained in:
@@ -412,10 +412,10 @@ namespace BitTorrent
|
||||
bool cancelLoadMetadata(const InfoHash &hash);
|
||||
|
||||
void recursiveTorrentDownload(const InfoHash &hash);
|
||||
void increaseTorrentsQueuePos(const QStringList &hashes);
|
||||
void decreaseTorrentsQueuePos(const QStringList &hashes);
|
||||
void topTorrentsQueuePos(const QStringList &hashes);
|
||||
void bottomTorrentsQueuePos(const QStringList &hashes);
|
||||
void increaseTorrentsQueuePos(const QVector<InfoHash> &hashes);
|
||||
void decreaseTorrentsQueuePos(const QVector<InfoHash> &hashes);
|
||||
void topTorrentsQueuePos(const QVector<InfoHash> &hashes);
|
||||
void bottomTorrentsQueuePos(const QVector<InfoHash> &hashes);
|
||||
|
||||
// TorrentHandle interface
|
||||
void handleTorrentSaveResumeDataRequested(const TorrentHandle *torrent);
|
||||
|
||||
Reference in New Issue
Block a user