mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-03 06:02:29 -06:00
Drop superfluous const
This commit is contained in:
@@ -76,16 +76,16 @@ public:
|
||||
|
||||
public slots:
|
||||
void setVisibility(bool visible);
|
||||
void loadTorrentInfos(BitTorrent::Torrent *const torrent);
|
||||
void loadTorrentInfos(BitTorrent::Torrent *torrent);
|
||||
void loadDynamicData();
|
||||
void clear();
|
||||
void readSettings();
|
||||
void saveSettings();
|
||||
void reloadPreferences();
|
||||
void loadTrackers(BitTorrent::Torrent *const torrent);
|
||||
void loadTrackers(BitTorrent::Torrent *torrent);
|
||||
|
||||
protected slots:
|
||||
void updateTorrentInfos(BitTorrent::Torrent *const torrent);
|
||||
void updateTorrentInfos(BitTorrent::Torrent *torrent);
|
||||
void loadUrlSeeds();
|
||||
void askWebSeed();
|
||||
void deleteSelectedUrlSeeds();
|
||||
@@ -97,7 +97,7 @@ protected slots:
|
||||
|
||||
private slots:
|
||||
void configure();
|
||||
void updateSavePath(BitTorrent::Torrent *const torrent);
|
||||
void updateSavePath(BitTorrent::Torrent *torrent);
|
||||
|
||||
private:
|
||||
QPushButton *getButtonFromIndex(int index);
|
||||
|
||||
@@ -54,7 +54,7 @@ class TrackersAdditionDialog : public QDialog
|
||||
Q_DISABLE_COPY_MOVE(TrackersAdditionDialog)
|
||||
|
||||
public:
|
||||
TrackersAdditionDialog(QWidget *parent, BitTorrent::Torrent *const torrent);
|
||||
TrackersAdditionDialog(QWidget *parent, BitTorrent::Torrent *torrent);
|
||||
~TrackersAdditionDialog();
|
||||
|
||||
private slots:
|
||||
|
||||
Reference in New Issue
Block a user