mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 06:02:41 -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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int sendCount = 0;
|
size_t sendCount = 0;
|
||||||
unsigned int recvCount = 0;
|
size_t recvCount = 0;
|
||||||
|
|
||||||
rsDisc->getWaitingDiscCount(&sendCount, &recvCount);
|
rsDisc->getWaitingDiscCount(sendCount, recvCount);
|
||||||
|
|
||||||
sendLabel->setText(QString::number(sendCount));
|
sendLabel->setText(QString::number(sendCount));
|
||||||
recvLabel->setText(QString::number(recvCount));
|
recvLabel->setText(QString::number(recvCount));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue