diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-11-05 22:19:52 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-11-05 23:03:06 -0500 |
| commit | ee22d091a0058eb12acad673bfc4e7346a195484 (patch) | |
| tree | 4730e76cce5d6a71507cc56f1e3139d2e697cc89 /Source/Core/DolphinWX/Debugger/WatchView.cpp | |
| parent | be386e974bdadceea3adefa04bf031e665bd0a8c (diff) | |
DolphinWX: Eliminate most usages of event tables in the debugger.
Moves things over to Bind.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/WatchView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/WatchView.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/Debugger/WatchView.cpp b/Source/Core/DolphinWX/Debugger/WatchView.cpp index cc59c57a52..34c427579d 100644 --- a/Source/Core/DolphinWX/Debugger/WatchView.cpp +++ b/Source/Core/DolphinWX/Debugger/WatchView.cpp @@ -221,6 +221,9 @@ CWatchView::CWatchView(wxWindow* parent, wxWindowID id) SetRowLabelSize(0); SetColLabelSize(0); DisableDragRowSize(); + + Bind(wxEVT_GRID_CELL_RIGHT_CLICK, &CWatchView::OnMouseDownR, this); + Bind(wxEVT_MENU, &CWatchView::OnPopupMenu, this); } void CWatchView::Update() |
