mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
Use the correct type when referring to info hash
This commit is contained in:
@@ -30,8 +30,8 @@
|
||||
#define TRANSFERLISTWIDGET_H
|
||||
|
||||
#include <functional>
|
||||
#include <QtContainerFwd>
|
||||
#include <QTreeView>
|
||||
#include <QVector>
|
||||
|
||||
class MainWindow;
|
||||
class TransferListDelegate;
|
||||
@@ -40,6 +40,7 @@ class TransferListSortModel;
|
||||
|
||||
namespace BitTorrent
|
||||
{
|
||||
class InfoHash;
|
||||
class TorrentHandle;
|
||||
}
|
||||
|
||||
@@ -90,7 +91,7 @@ public slots:
|
||||
void applyCategoryFilter(const QString &category);
|
||||
void applyTagFilter(const QString &tag);
|
||||
void applyTrackerFilterAll();
|
||||
void applyTrackerFilter(const QStringList &hashes);
|
||||
void applyTrackerFilter(const QSet<BitTorrent::InfoHash> &hashes);
|
||||
void previewFile(const QString &filePath);
|
||||
void renameSelectedTorrent();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user