mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-27 11:49:01 +03:00
Merge pull request #3990 from naikel/payload_fix
Changed payload functions from int to qlonglong in TorrentHandle class
This commit is contained in:
commit
99ba8a6a53
2 changed files with 4 additions and 4 deletions
|
@ -1055,12 +1055,12 @@ int TorrentHandle::downloadPayloadRate() const
|
|||
return m_nativeStatus.download_payload_rate;
|
||||
}
|
||||
|
||||
int TorrentHandle::totalPayloadUpload() const
|
||||
qlonglong TorrentHandle::totalPayloadUpload() const
|
||||
{
|
||||
return m_nativeStatus.total_payload_upload;
|
||||
}
|
||||
|
||||
int TorrentHandle::totalPayloadDownload() const
|
||||
qlonglong TorrentHandle::totalPayloadDownload() const
|
||||
{
|
||||
return m_nativeStatus.total_payload_download;
|
||||
}
|
||||
|
|
|
@ -254,8 +254,8 @@ namespace BitTorrent
|
|||
qreal realRatio() const;
|
||||
int uploadPayloadRate() const;
|
||||
int downloadPayloadRate() const;
|
||||
int totalPayloadUpload() const;
|
||||
int totalPayloadDownload() const;
|
||||
qlonglong totalPayloadUpload() const;
|
||||
qlonglong totalPayloadDownload() const;
|
||||
int connectionsCount() const;
|
||||
int connectionsLimit() const;
|
||||
qlonglong nextAnnounce() const;
|
||||
|
|
Loading…
Reference in a new issue