From 624e41f0f6015131f114e7da96ed46d054d1b441 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Tue, 1 Jul 2008 10:35:59 +0000 Subject: [PATCH] MGR: Fix build break on Linux svn path=/trunk/boinc/; revision=15525 --- checkin_notes | 6 ++++++ clientgui/ViewWork.cpp | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index af92b6ef49..b86c8f2524 100644 --- a/checkin_notes +++ b/checkin_notes @@ -5286,3 +5286,9 @@ Charlie 30 June 2008 clientgui/ BOINCBaseFrame.cpp,h MainDocument.cpp + +Charlie 1 July 2008 + - MGR: Fix build break on Linux. + + clientgui/ + ViewWork.cpp diff --git a/clientgui/ViewWork.cpp b/clientgui/ViewWork.cpp index 549b6bc613..8db882a969 100644 --- a/clientgui/ViewWork.cpp +++ b/clientgui/ViewWork.cpp @@ -760,7 +760,7 @@ void CViewWork::GetDocName(wxInt32 item, wxString& strBuffer) const { wxASSERT(result); if (result) { - strBuffer = result->name; + strBuffer = wxString(result->name.c_str(), wxConvUTF8); } }