mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
Merge pull request #1470 from lioncash/ui
CheatSearchTab: Use a more specific event type for ApplyFocus
This commit is contained in:
commit
9daaf94f3c
@ -254,7 +254,7 @@ void CheatSearchTab::FilterCheatSearchResults(wxCommandEvent&)
|
|||||||
UpdateCheatSearchResultsList();
|
UpdateCheatSearchResultsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CheatSearchTab::ApplyFocus(wxEvent& ev)
|
void CheatSearchTab::ApplyFocus(wxFocusEvent& ev)
|
||||||
{
|
{
|
||||||
ev.Skip();
|
ev.Skip();
|
||||||
m_value_x_radiobtn.rad_uservalue->SetValue(true);
|
m_value_x_radiobtn.rad_uservalue->SetValue(true);
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
class wxButton;
|
class wxButton;
|
||||||
class wxChoice;
|
class wxChoice;
|
||||||
class wxCommandEvent;
|
class wxCommandEvent;
|
||||||
class wxEvent;
|
class wxFocusEvent;
|
||||||
class wxListBox;
|
class wxListBox;
|
||||||
class wxRadioBox;
|
class wxRadioBox;
|
||||||
class wxRadioButton;
|
class wxRadioButton;
|
||||||
@ -57,5 +57,5 @@ private:
|
|||||||
void StartNewSearch(wxCommandEvent& event);
|
void StartNewSearch(wxCommandEvent& event);
|
||||||
void FilterCheatSearchResults(wxCommandEvent& event);
|
void FilterCheatSearchResults(wxCommandEvent& event);
|
||||||
void CreateARCode(wxCommandEvent&);
|
void CreateARCode(wxCommandEvent&);
|
||||||
void ApplyFocus(wxEvent&);
|
void ApplyFocus(wxFocusEvent&);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user