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:
drbob 2008-06-06 00:04:45 +00:00
parent 9786a2ad54
commit 5f3c9873fc
2 changed files with 67 additions and 72 deletions

View file

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