mirror of https://github.com/BOINC/boinc.git
result status label
svn path=/trunk/boinc/; revision=7314
This commit is contained in:
parent
b2011b3e5f
commit
eb8bb52e9b
|
@ -10544,3 +10544,9 @@ Rom 13 Aug 2005
|
|||
BOINC.ism
|
||||
zlib/
|
||||
<A Bunch of files>
|
||||
|
||||
David 13 Aug 2005
|
||||
- manager: fix result status in certain case (from Bruce Allen)
|
||||
|
||||
clientgui
|
||||
ViewWork.cpp
|
||||
|
|
|
@ -677,7 +677,11 @@ wxInt32 CViewWork::FormatStatus(wxInt32 item, wxString& strBuffer) const {
|
|||
}
|
||||
break;
|
||||
case RESULT_COMPUTE_ERROR:
|
||||
strBuffer = _("Computation error");
|
||||
if (result->aborted_via_gui) {
|
||||
strBuffer = _("Aborted by user");
|
||||
} else {
|
||||
strBuffer = _("Computation error");
|
||||
}
|
||||
break;
|
||||
case RESULT_FILES_UPLOADING:
|
||||
if (result->ready_to_report) {
|
||||
|
|
Loading…
Reference in New Issue