From 97df5667e7f9aafd9b417cfe5130ef06ba3ed419 Mon Sep 17 00:00:00 2001 From: Silver Zachara Date: Mon, 21 Sep 2020 11:28:49 +0200 Subject: [PATCH] Use fully-qualified type names Fixed fully-qualified-moc-types clazy warnings --- src/base/bittorrent/session.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/base/bittorrent/session.h b/src/base/bittorrent/session.h index 9e31b372a..bb8526599 100644 --- a/src/base/bittorrent/session.h +++ b/src/base/bittorrent/session.h @@ -514,8 +514,8 @@ namespace BitTorrent void torrentStorageMoveFailed(BitTorrent::TorrentHandle *const torrent, const QString &targetPath, const QString &error); void torrentStorageMoveFinished(BitTorrent::TorrentHandle *const torrent, const QString &newPath); void torrentsUpdated(const QVector &torrents); - void torrentTagAdded(TorrentHandle *const torrent, const QString &tag); - void torrentTagRemoved(TorrentHandle *const torrent, const QString &tag); + void torrentTagAdded(BitTorrent::TorrentHandle *const torrent, const QString &tag); + void torrentTagRemoved(BitTorrent::TorrentHandle *const torrent, const QString &tag); void trackerError(BitTorrent::TorrentHandle *const torrent, const QString &tracker); void trackerlessStateChanged(BitTorrent::TorrentHandle *const torrent, bool trackerless); void trackersAdded(BitTorrent::TorrentHandle *const torrent, const QVector &trackers);