make rs use the new function

This commit is contained in:
sehraf 2018-09-08 08:57:07 +02:00
parent ae14a01d58
commit f34d021387
No known key found for this signature in database
GPG Key ID: DF09F6EAE356B2C6

View File

@ -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));