mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07:00
Remove meaningless const on pointers
This only apply to signals.
This commit is contained in:
parent
2e37ea608c
commit
ef9765cea1
1 changed files with 24 additions and 24 deletions
|
@ -492,39 +492,39 @@ namespace BitTorrent
|
||||||
void categoryRemoved(const QString &categoryName);
|
void categoryRemoved(const QString &categoryName);
|
||||||
void downloadFromUrlFailed(const QString &url, const QString &reason);
|
void downloadFromUrlFailed(const QString &url, const QString &reason);
|
||||||
void downloadFromUrlFinished(const QString &url);
|
void downloadFromUrlFinished(const QString &url);
|
||||||
void fullDiskError(TorrentHandle *const torrent, const QString &msg);
|
void fullDiskError(TorrentHandle *torrent, const QString &msg);
|
||||||
void IPFilterParsed(bool error, int ruleCount);
|
void IPFilterParsed(bool error, int ruleCount);
|
||||||
void loadTorrentFailed(const QString &error);
|
void loadTorrentFailed(const QString &error);
|
||||||
void metadataLoaded(const TorrentInfo &info);
|
void metadataLoaded(const TorrentInfo &info);
|
||||||
void recursiveTorrentDownloadPossible(TorrentHandle *const torrent);
|
void recursiveTorrentDownloadPossible(TorrentHandle *torrent);
|
||||||
void speedLimitModeChanged(bool alternative);
|
void speedLimitModeChanged(bool alternative);
|
||||||
void statsUpdated();
|
void statsUpdated();
|
||||||
void subcategoriesSupportChanged();
|
void subcategoriesSupportChanged();
|
||||||
void tagAdded(const QString &tag);
|
void tagAdded(const QString &tag);
|
||||||
void tagRemoved(const QString &tag);
|
void tagRemoved(const QString &tag);
|
||||||
void torrentAboutToBeRemoved(TorrentHandle *const torrent);
|
void torrentAboutToBeRemoved(TorrentHandle *torrent);
|
||||||
void torrentAdded(TorrentHandle *const torrent);
|
void torrentAdded(TorrentHandle *torrent);
|
||||||
void torrentCategoryChanged(TorrentHandle *const torrent, const QString &oldCategory);
|
void torrentCategoryChanged(TorrentHandle *torrent, const QString &oldCategory);
|
||||||
void torrentFinished(TorrentHandle *const torrent);
|
void torrentFinished(TorrentHandle *torrent);
|
||||||
void torrentFinishedChecking(TorrentHandle *const torrent);
|
void torrentFinishedChecking(TorrentHandle *torrent);
|
||||||
void torrentLoaded(TorrentHandle *const torrent);
|
void torrentLoaded(TorrentHandle *torrent);
|
||||||
void torrentMetadataLoaded(TorrentHandle *const torrent);
|
void torrentMetadataLoaded(TorrentHandle *torrent);
|
||||||
void torrentPaused(TorrentHandle *const torrent);
|
void torrentPaused(TorrentHandle *torrent);
|
||||||
void torrentResumed(TorrentHandle *const torrent);
|
void torrentResumed(TorrentHandle *torrent);
|
||||||
void torrentSavePathChanged(TorrentHandle *const torrent);
|
void torrentSavePathChanged(TorrentHandle *torrent);
|
||||||
void torrentSavingModeChanged(TorrentHandle *const torrent);
|
void torrentSavingModeChanged(TorrentHandle *torrent);
|
||||||
void torrentStorageMoveFailed(TorrentHandle *const torrent, const QString &targetPath, const QString &error);
|
void torrentStorageMoveFailed(TorrentHandle *torrent, const QString &targetPath, const QString &error);
|
||||||
void torrentStorageMoveFinished(TorrentHandle *const torrent, const QString &newPath);
|
void torrentStorageMoveFinished(TorrentHandle *torrent, const QString &newPath);
|
||||||
void torrentsUpdated(const QVector<TorrentHandle *> &torrents);
|
void torrentsUpdated(const QVector<TorrentHandle *> &torrents);
|
||||||
void torrentTagAdded(TorrentHandle *const torrent, const QString &tag);
|
void torrentTagAdded(TorrentHandle *torrent, const QString &tag);
|
||||||
void torrentTagRemoved(TorrentHandle *const torrent, const QString &tag);
|
void torrentTagRemoved(TorrentHandle *torrent, const QString &tag);
|
||||||
void trackerError(TorrentHandle *const torrent, const QString &tracker);
|
void trackerError(TorrentHandle *torrent, const QString &tracker);
|
||||||
void trackerlessStateChanged(TorrentHandle *const torrent, bool trackerless);
|
void trackerlessStateChanged(TorrentHandle *torrent, bool trackerless);
|
||||||
void trackersAdded(TorrentHandle *const torrent, const QVector<TrackerEntry> &trackers);
|
void trackersAdded(TorrentHandle *torrent, const QVector<TrackerEntry> &trackers);
|
||||||
void trackersChanged(TorrentHandle *const torrent);
|
void trackersChanged(TorrentHandle *torrent);
|
||||||
void trackersRemoved(TorrentHandle *const torrent, const QVector<TrackerEntry> &trackers);
|
void trackersRemoved(TorrentHandle *torrent, const QVector<TrackerEntry> &trackers);
|
||||||
void trackerSuccess(TorrentHandle *const torrent, const QString &tracker);
|
void trackerSuccess(TorrentHandle *torrent, const QString &tracker);
|
||||||
void trackerWarning(TorrentHandle *const torrent, const QString &tracker);
|
void trackerWarning(TorrentHandle *torrent, const QString &tracker);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void configureDeferred();
|
void configureDeferred();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue