corrected upload/download status in upload transfers

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1252 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2009-05-17 13:26:16 +00:00
parent 529b0d7f04
commit 8f024fd08d

View File

@ -531,7 +531,7 @@ void TransfersDialog::insertTransfers()
status = tr("Waiting"); status = tr("Waiting");
break; break;
case FT_STATE_DOWNLOADING: case FT_STATE_DOWNLOADING:
status = tr("Downloading"); status = tr("Uploading");
break; break;
case FT_STATE_COMPLETE: case FT_STATE_COMPLETE:
default: default:
@ -540,10 +540,10 @@ void TransfersDialog::insertTransfers()
} }
if (info.downloadStatus == FT_STATE_COMPLETE) // if (info.downloadStatus == FT_STATE_COMPLETE)
{ // {
status = "Complete"; // status = "Complete";
} // }
dlspeed = pit->tfRate * 1024.0; dlspeed = pit->tfRate * 1024.0;
fileSize = info.size; fileSize = info.size;