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

@ -46,10 +46,11 @@ class CWatchView : public wxGrid
public:
CWatchView(wxWindow* parent, wxWindowID id = wxID_ANY);
void Update() override;
private:
void OnMouseDownR(wxGridEvent& event);
void OnPopupMenu(wxCommandEvent& event);
private:
u32 m_selectedAddress = 0;
u32 m_selectedRow = 0;
CWatchTable* m_watch_table;