mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-22 07:41:20 -04:00
Fixed up name/transfer rate display in FileTransfer Info.
Updated Qblog interface file (from libretroshare) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@576 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
9786a2ad54
commit
5f3c9873fc
2 changed files with 67 additions and 72 deletions
|
@ -288,7 +288,7 @@ int TransfersDialog::addUploadItem(QString symbol, QString name, QString coreID,
|
|||
ULListModel->setData(ULListModel->index(row, UPROGRESS), QVariant((double)progress));
|
||||
ULListModel->setData(ULListModel->index(row, ULSPEED), QVariant((double)dlspeed));
|
||||
ULListModel->setData(ULListModel->index(row, USTATUS), QVariant((QString)status));
|
||||
ULListModel->setData(ULListModel->index(row, UTRANSFERRED), QVariant((qlonglong)remaining));
|
||||
ULListModel->setData(ULListModel->index(row, UTRANSFERRED), QVariant((qlonglong)completed));
|
||||
|
||||
return row;
|
||||
}
|
||||
|
@ -395,6 +395,8 @@ void TransfersDialog::insertTransfers()
|
|||
//coreId = QString::fromStdString(it->hashout.str());
|
||||
coreId = QString::fromStdString(it->hash);
|
||||
|
||||
sources = QString::fromStdString(it->source);
|
||||
|
||||
switch(it->downloadStatus)
|
||||
{
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue