From: John L. <jr...@us...> - 2006-06-12 22:27:16
|
Update of /cvsroot/wxlua/wxLua/apps/wxluacan/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv32582/wxLua/apps/wxluacan/src Modified Files: cansim.cpp Log Message: remove unused parameter warnings Index: cansim.cpp =================================================================== RCS file: /cvsroot/wxlua/wxLua/apps/wxluacan/src/cansim.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** cansim.cpp 14 May 2006 01:49:10 -0000 1.9 --- cansim.cpp 12 Jun 2006 22:27:14 -0000 1.10 *************** *** 158,182 **** } ! void MyFrame::OnUndo(wxCommandEvent& event) { m_canvas->GetCmdh()->Undo(); } ! void MyFrame::OnRedo(wxCommandEvent& event) { m_canvas->GetCmdh()->Redo(); } ! void MyFrame::OnQuit( wxCommandEvent &event ) { Close( true ); } ! void MyFrame::OnCloseWindow( wxCloseEvent &event ) { Destroy(); } ! void MyFrame::OnTimer( wxTimerEvent &event ) { wxWakeUpIdle(); --- 158,182 ---- } ! void MyFrame::OnUndo(wxCommandEvent& ) { m_canvas->GetCmdh()->Undo(); } ! void MyFrame::OnRedo(wxCommandEvent& ) { m_canvas->GetCmdh()->Redo(); } ! void MyFrame::OnQuit( wxCommandEvent & ) { Close( true ); } ! void MyFrame::OnCloseWindow( wxCloseEvent & ) { Destroy(); } ! void MyFrame::OnTimer( wxTimerEvent & ) { wxWakeUpIdle(); *************** *** 255,259 **** ! void MyFrame::OnRunScript(wxCommandEvent& event) { wxString fullPath = wxFileSelector( _("Select a script file"), --- 255,259 ---- ! void MyFrame::OnRunScript(wxCommandEvent& ) { wxString fullPath = wxFileSelector( _("Select a script file"), |