mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
Fix several signals/slots bindings
Drop backward compatiblity functions for qBT <= 1.4.0 Clean up torrent loading code (Use priority queue instead of insertion sort)
This commit is contained in:
@@ -54,9 +54,9 @@ public:
|
||||
|
||||
public slots:
|
||||
void refreshList();
|
||||
void addTorrent(const QTorrentHandle& h);
|
||||
void pauseTorrent(const QTorrentHandle &h);
|
||||
void setFinished(const QTorrentHandle &h);
|
||||
void addTorrent(QTorrentHandle& h);
|
||||
void pauseTorrent(QTorrentHandle &h);
|
||||
void setFinished(QTorrentHandle &h);
|
||||
void setSelectionLabel(QString label);
|
||||
void setRefreshInterval(int t);
|
||||
void startSelectedTorrents();
|
||||
@@ -102,9 +102,9 @@ protected slots:
|
||||
bool loadHiddenColumns();
|
||||
void saveHiddenColumns() const;
|
||||
void displayListMenu(const QPoint&);
|
||||
void updateMetadata(const QTorrentHandle &h);
|
||||
void updateMetadata(QTorrentHandle &h);
|
||||
void currentChanged(const QModelIndex& current, const QModelIndex&);
|
||||
void resumeTorrent(const QTorrentHandle &h);
|
||||
void resumeTorrent(QTorrentHandle &h);
|
||||
#ifdef LIBTORRENT_0_15
|
||||
void toggleSelectedTorrentsSuperSeeding() const;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user