mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-05 21:29:23 -04:00
make rs use the new function
This commit is contained in:
parent
ae14a01d58
commit
f34d021387
1 changed files with 3 additions and 3 deletions
|
@ -66,10 +66,10 @@ void DiscStatus::update()
|
|||
return;
|
||||
}
|
||||
|
||||
unsigned int sendCount = 0;
|
||||
unsigned int recvCount = 0;
|
||||
size_t sendCount = 0;
|
||||
size_t recvCount = 0;
|
||||
|
||||
rsDisc->getWaitingDiscCount(&sendCount, &recvCount);
|
||||
rsDisc->getWaitingDiscCount(sendCount, recvCount);
|
||||
|
||||
sendLabel->setText(QString::number(sendCount));
|
||||
recvLabel->setText(QString::number(recvCount));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue