DolphinWX: Make some debugger functions/vars private

Some classes expose things that aren't used outside of them (and in some cases, shouldn't be exposed).
This commit is contained in:
Lioncash
2015-04-27 20:36:09 -04:00
parent 4bf4778cd7
commit 263e64e939
6 changed files with 49 additions and 46 deletions

View File

@ -71,10 +71,11 @@ class CRegisterView : public wxGrid
public:
CRegisterView(wxWindow* parent, wxWindowID id = wxID_ANY);
void Update() override;
private:
void OnMouseDownR(wxGridEvent& event);
void OnPopupMenu(wxCommandEvent& event);
private:
u32 m_selectedAddress = 0;
// Owned by wx. Deleted implicitly upon destruction.