mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
Merge pull request #3199 from sepalani/debug_mem_range
MemoryCheckDlg: Fix close/cancel buttons
This commit is contained in:
commit
382a2f390c
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ MemoryCheckDlg::MemoryCheckDlg(CBreakPointWindow *parent)
|
||||||
: wxDialog(parent, wxID_ANY, _("Memory Check"))
|
: wxDialog(parent, wxID_ANY, _("Memory Check"))
|
||||||
, m_parent(parent)
|
, 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_pEditStartAddress = new wxTextCtrl(this, wxID_ANY, "");
|
||||||
m_pEditEndAddress = new wxTextCtrl(this, wxID_ANY, "");
|
m_pEditEndAddress = new wxTextCtrl(this, wxID_ANY, "");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue