summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorSepalani <sepalani@hotmail.fr>2015-10-23 20:37:29 +0200
committerSepalani <sepalani@hotmail.fr>2015-10-23 20:37:29 +0200
commit6b662280a9743c4dfade799695d0682fd45b9958 (patch)
treeccfcb5537682c9a548ba5989f40f6ca163ad7d22 /Source
parentbdfe889eac2cdd9e4be9b5fe9b29b2b3f38e97bf (diff)
MemoryCheckDlg: Fix event buttons
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp b/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp
index af438c227f..06bce154ea 100644
--- a/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp
+++ b/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp
@@ -23,7 +23,7 @@ MemoryCheckDlg::MemoryCheckDlg(CBreakPointWindow *parent)
: wxDialog(parent, wxID_ANY, _("Memory Check"))
, m_parent(parent)
{
- Bind(wxEVT_BUTTON, &MemoryCheckDlg::OnOK, this);
+ Bind(wxEVT_BUTTON, &MemoryCheckDlg::OnOK, this, wxID_OK);
m_pEditStartAddress = new wxTextCtrl(this, wxID_ANY, "");
m_pEditEndAddress = new wxTextCtrl(this, wxID_ANY, "");