- Manager: show host ID in project properties

svn path=/trunk/boinc/; revision=18331
This commit is contained in:
David Anderson 2009-06-08 17:13:31 +00:00
parent ca44344068
commit 61e040a743
2 changed files with 7 additions and 0 deletions

View File

@ -5181,3 +5181,9 @@ David 8 June 2009
lib/
gui_rpc_client.h
gui_rpc_client_ops.cpp
David 8 June 2009
- Manager: show host ID in project properties
clientgui/
DltItemProperties.cpp

View File

@ -111,6 +111,7 @@ void CDlgItemProperties::renderInfos(PROJECT* project_in) {
addProperty(_("Scheduler RPC deferred for"), FormatTime(project->min_rpc_time - dtime()));
}
addProperty(_("Disk usage"),FormatDiskSpace(diskusage));
addProperty(_("Computer ID"), wxString::Format(wxT("%d"), project->hostid));
addProperty(_("Non CPU intensive"),project->non_cpu_intensive ? _("yes") : _("no"));
addProperty(_("Suspended via GUI"),project->suspended_via_gui ? _("yes") : _("no"));
addProperty(_("Don't request more work"),project->dont_request_more_work ? _("yes") : _("no"));