From 648f9ed10029df4eaae32bd7897f66529edadd08 Mon Sep 17 00:00:00 2001 From: Frank Thomas Date: Sat, 12 Jan 2008 10:48:22 +0000 Subject: [PATCH] Compilation fix for the unicode variant of wxWidgets. svn path=/trunk/boinc/; revision=14541 --- clientgui/BOINCGUIApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientgui/BOINCGUIApp.cpp b/clientgui/BOINCGUIApp.cpp index f56d53cd3d..3f724ffbf1 100644 --- a/clientgui/BOINCGUIApp.cpp +++ b/clientgui/BOINCGUIApp.cpp @@ -699,7 +699,7 @@ void CBOINCGUIApp::StartupBOINCCore() { #else // Unix based systems // copy the path to the boinmgr from argv[0] - strExecute = (const char*)wxGetApp().argv[0]; + strExecute = wxString((const char*)wxGetApp().argv[0], wxConvUTF8); // Append boinc.exe to the end of the strExecute string and get ready to rock strExecute += wxT("/boinc -redirectio -launched_by_manager");