MGR: Fix build break on Linux

svn path=/trunk/boinc/; revision=15525
This commit is contained in:
Charlie Fenton 2008-07-01 10:35:59 +00:00
parent 6fcff6f484
commit 624e41f0f6
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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);
}
}