GCAdapterConfigDiag: Make functions private where applicable

These don't need to be in the public interface.
This commit is contained in:
Lioncash 2016-11-10 20:11:59 -05:00
parent c77d4a765d
commit c5c7ff9fd6
1 changed files with 4 additions and 4 deletions

View File

@ -14,13 +14,13 @@ public:
GCAdapterConfigDiag(wxWindow* const parent, const wxString& name, const int tab_num = 0);
~GCAdapterConfigDiag();
private:
void ScheduleAdapterUpdate();
void UpdateAdapter(wxCommandEvent& ev);
private:
wxStaticText* m_adapter_status;
int m_pad_id;
void OnAdapterRumble(wxCommandEvent& event);
void OnAdapterKonga(wxCommandEvent& event);
wxStaticText* m_adapter_status;
int m_pad_id;
};