Typo correction

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30983 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-12-13 09:18:34 +00:00
parent 5b870dc087
commit 78a445a86e

View File

@@ -447,7 +447,7 @@ DEFINE_EVENT_TYPE(wxEVT_MY_EVENT)
BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU (wxID_EXIT, MyFrame::OnExit)
// ....
EVT_COMMAND (wxEVT_MY_EVENT, ID_MY_WINDOW, MyFrame::OnMyEvent)
EVT_COMMAND (ID_MY_WINDOW, wxEVT_MY_EVENT, MyFrame::OnMyEvent)
END_EVENT_TABLE()
void MyFrame::OnMyEvent( wxCommandEvent &event )