Get rid of old wx event type usages. Use recommended replacements

This commit is contained in:
Lioncash 2014-05-17 12:49:00 -04:00
commit 90df5efd01
13 changed files with 135 additions and 136 deletions

View file

@ -30,8 +30,7 @@
class wxWindow;
BEGIN_EVENT_TABLE(HotkeyConfigDialog,wxDialog)
EVT_COMMAND_RANGE(0, NUM_HOTKEYS - 1,
wxEVT_COMMAND_BUTTON_CLICKED, HotkeyConfigDialog::OnButtonClick)
EVT_COMMAND_RANGE(0, NUM_HOTKEYS - 1, wxEVT_BUTTON, HotkeyConfigDialog::OnButtonClick)
EVT_TIMER(wxID_ANY, HotkeyConfigDialog::OnButtonTimer)
END_EVENT_TABLE()