Merge pull request #1470 from lioncash/ui

CheatSearchTab: Use a more specific event type for ApplyFocus
This commit is contained in:
Lioncash 2014-11-02 01:12:21 -04:00
commit 9daaf94f3c
2 changed files with 3 additions and 3 deletions

View file

@ -254,7 +254,7 @@ void CheatSearchTab::FilterCheatSearchResults(wxCommandEvent&)
UpdateCheatSearchResultsList();
}
void CheatSearchTab::ApplyFocus(wxEvent& ev)
void CheatSearchTab::ApplyFocus(wxFocusEvent& ev)
{
ev.Skip();
m_value_x_radiobtn.rad_uservalue->SetValue(true);

View file

@ -10,7 +10,7 @@
class wxButton;
class wxChoice;
class wxCommandEvent;
class wxEvent;
class wxFocusEvent;
class wxListBox;
class wxRadioBox;
class wxRadioButton;
@ -57,5 +57,5 @@ private:
void StartNewSearch(wxCommandEvent& event);
void FilterCheatSearchResults(wxCommandEvent& event);
void CreateARCode(wxCommandEvent&);
void ApplyFocus(wxEvent&);
void ApplyFocus(wxFocusEvent&);
};