mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-10 15:32:48 -07:00
Drop implicit conversions between InfoHash and QString
This commit is contained in:
parent
752eb58ec0
commit
8cfd803222
13 changed files with 72 additions and 68 deletions
|
@ -496,7 +496,7 @@ void TransferListWidget::copySelectedHashes() const
|
|||
{
|
||||
QStringList torrentHashes;
|
||||
for (BitTorrent::Torrent *const torrent : asConst(getSelectedTorrents()))
|
||||
torrentHashes << torrent->hash();
|
||||
torrentHashes << torrent->hash().toString();
|
||||
|
||||
qApp->clipboard()->setText(torrentHashes.join('\n'));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue