mirror of https://github.com/BOINC/boinc.git
- Manager: show host ID in project properties
svn path=/trunk/boinc/; revision=18331
This commit is contained in:
parent
ca44344068
commit
61e040a743
|
@ -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
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue