mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
make rs use the new function
This commit is contained in:
parent
ae14a01d58
commit
f34d021387
@ -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…
Reference in New Issue
Block a user