Unicode compilation problems in the samples (patch from Dimitri)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15479 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-05-10 12:26:30 +00:00
parent ad6bd8701e
commit 4fce73fcaf
4 changed files with 11 additions and 11 deletions

View File

@@ -574,16 +574,16 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event) )
void MyFrame::OnExecMain(wxCommandEvent& WXUNUSED(event))
{
wxLogMessage("The exit code from the main program is %ld",
wxLogMessage(wxT("The exit code from the main program is %ld"),
EXEC("/bin/echo \"main program\""));
}
void MyFrame::OnExecThread(wxCommandEvent& WXUNUSED(event))
{
MyExecThread thread("/bin/echo \"child thread\"");
MyExecThread thread(wxT("/bin/echo \"child thread\""));
thread.Run();
wxLogMessage("The exit code from a child thread is %ld",
wxLogMessage(wxT("The exit code from a child thread is %ld"),
(long)thread.Wait());
}
@@ -607,7 +607,7 @@ void MyFrame::OnShowCPUs(wxCommandEvent& WXUNUSED(event))
break;
default:
msg.Printf("This system has %d CPUs", nCPUs);
msg.Printf(wxT("This system has %d CPUs"), nCPUs);
}
wxLogMessage(msg);