mirror of https://github.com/BOINC/boinc.git
Compilation fix for the unicode variant of wxWidgets.
svn path=/trunk/boinc/; revision=14541
This commit is contained in:
parent
e1072747f5
commit
648f9ed100
|
@ -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");
|
||||
|
|
Loading…
Reference in New Issue