mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Update the breakpoint list after an add from the parent
Doing it from the add dialogs instead would prevent the call to these dialogs outside of a breakpointWindow which would be necessary for hotkeys binding.
This commit is contained in:
@ -6,7 +6,6 @@
|
||||
|
||||
#include <wx/dialog.h>
|
||||
|
||||
class CBreakPointWindow;
|
||||
class wxRadioButton;
|
||||
class wxStaticText;
|
||||
class wxTextCtrl;
|
||||
@ -14,10 +13,9 @@ class wxTextCtrl;
|
||||
class MemoryCheckDlg : public wxDialog
|
||||
{
|
||||
public:
|
||||
MemoryCheckDlg(CBreakPointWindow* parent);
|
||||
MemoryCheckDlg(wxWindow* parent);
|
||||
|
||||
private:
|
||||
CBreakPointWindow* m_parent;
|
||||
wxStaticText* m_textAddress;
|
||||
wxStaticText* m_textStartAddress;
|
||||
wxStaticText* m_textEndAddress;
|
||||
|
Reference in New Issue
Block a user