summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/WatchView.cpp
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2014-11-08 12:26:52 +1100
committerskidau <skidau@gmail.com>2014-11-08 12:26:52 +1100
commita2fa679b2e030259c0e5de8fddf89b1900c75b90 (patch)
tree527ac6b09bb88743100f492d316e0e26b0489de4 /Source/Core/DolphinWX/Debugger/WatchView.cpp
parent35b01c6616766386ba306ac6010fa047c94c7d6d (diff)
parentee22d091a0058eb12acad673bfc4e7346a195484 (diff)
Merge pull request #1507 from lioncash/event
DolphinWX: Eliminate most usages of event tables in the debugger
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/WatchView.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/WatchView.cpp3
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()