Browse Source

Use fully-qualified type names

Fixed fully-qualified-moc-types clazy warnings
adaptive-webui-19844
Silver Zachara 4 years ago committed by silverqx
parent
commit
97df5667e7
No known key found for this signature in database
GPG Key ID: 7AF60D549724DEEF
  1. 4
      src/base/bittorrent/session.h

4
src/base/bittorrent/session.h

@ -514,8 +514,8 @@ namespace BitTorrent @@ -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<BitTorrent::TorrentHandle *> &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<BitTorrent::TrackerEntry> &trackers);

Loading…
Cancel
Save