Fix build break.

svn path=/trunk/boinc/; revision=16058
This commit is contained in:
Rom Walton 2008-09-25 18:25:38 +00:00
parent 11c4a0a9ac
commit 984f039f6d
1 changed files with 2 additions and 2 deletions

View File

@ -1019,10 +1019,10 @@ void CViewWork::GetDocStatus(wxInt32 item, wxString& strBuffer) const {
strBuffer = _("Running");
}
if (result->resources.size()) {
strBuffer += wxString(wxT(" (")) + result->resources + wxString(wxT(")"));
strBuffer += wxString(wxT(" (")) + wxString(result->resources.c_str()) + wxString(wxT(")"));
}
#if 0
// doesn't work - result pointer not there
// doesn't work - project pointer not there
if (result->project->non_cpu_intensive) {
strBuffer += _(" (non-CPU-intensive)");
}