*** empty log message ***

svn path=/trunk/boinc/; revision=11177
This commit is contained in:
Walt Gribben 2006-09-20 22:13:50 +00:00
parent 2ffc4b02e0
commit f3ab45c6c3
2 changed files with 8 additions and 1 deletions

View File

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

View File

@ -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");