From 984f039f6df0cddf33c3a08481712972b521e87f Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Thu, 25 Sep 2008 18:25:38 +0000 Subject: [PATCH] Fix build break. svn path=/trunk/boinc/; revision=16058 --- clientgui/ViewWork.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clientgui/ViewWork.cpp b/clientgui/ViewWork.cpp index d9094eb079..13c6ca722f 100644 --- a/clientgui/ViewWork.cpp +++ b/clientgui/ViewWork.cpp @@ -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)"); }