mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07: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:
parent
e082c02630
commit
bea3c33a46
5 changed files with 23 additions and 276 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue