mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11177
This commit is contained in:
parent
2ffc4b02e0
commit
f3ab45c6c3
|
@ -10360,3 +10360,10 @@ David 19 Sept 2006
|
|||
user/
|
||||
download_network.php (removed)
|
||||
sample_index.php
|
||||
|
||||
Walt 20 Sept 2006
|
||||
- Bug fix: fix task status text when the manager connects to an
|
||||
older client that doesn't support <get_cc_status>.
|
||||
|
||||
clientgui/
|
||||
ViewWork.cpp
|
|
@ -747,7 +747,7 @@ wxInt32 CViewWork::FormatStatus(wxInt32 item, wxString& strBuffer) const {
|
|||
strBuffer = _("Project suspended by user");
|
||||
} else if (result->suspended_via_gui) {
|
||||
strBuffer = _("Task suspended by user");
|
||||
} else if (status.task_suspend_reason) {
|
||||
} else if (status.task_suspend_reason > 0) {
|
||||
strBuffer = _("Suspended");
|
||||
if (status.task_suspend_reason & SUSPEND_REASON_BATTERIES) {
|
||||
strBuffer += _(" - on batteries");
|
||||
|
|
Loading…
Reference in New Issue