Various warning and Unicode fixes from ABX.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23454 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -746,7 +746,7 @@ void MyFrame::OnExecWithPipe(wxCommandEvent& WXUNUSED(event))
|
||||
m_cmdLast = cmd;
|
||||
}
|
||||
|
||||
void MyFrame::OnPOpen(wxCommandEvent& event)
|
||||
void MyFrame::OnPOpen(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
wxString cmd = wxGetTextFromUser(_T("Enter the command to launch: "),
|
||||
DIALOG_TITLE,
|
||||
@@ -778,7 +778,7 @@ void MyFrame::OnPOpen(wxCommandEvent& event)
|
||||
new MyPipeFrame(this, cmd, process);
|
||||
}
|
||||
|
||||
void MyFrame::OnFileExec(wxCommandEvent& event)
|
||||
void MyFrame::OnFileExec(wxCommandEvent& WXUNUSED(event))
|
||||
{
|
||||
static wxString s_filename;
|
||||
|
||||
@@ -1096,7 +1096,7 @@ void MyPipeFrame::OnClose(wxCloseEvent& event)
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
void MyPipeFrame::OnProcessTerm(wxProcessEvent& event)
|
||||
void MyPipeFrame::OnProcessTerm(wxProcessEvent& WXUNUSED(event))
|
||||
{
|
||||
delete m_process;
|
||||
m_process = NULL;
|
||||
|
Reference in New Issue
Block a user