diff options
| author | Mat M <mathew1800@gmail.com> | 2016-09-09 02:41:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-09 02:41:06 -0400 |
| commit | 1eacb8fd598702afa05755e996f66321df5bbd48 (patch) | |
| tree | 2d63be224410a70702969d45f7a69e349f695ceb /Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | |
| parent | 145ebd34e28f8681a6ef0e60e8f7b7f622cef0a8 (diff) | |
| parent | 5358e898c682de4ab8e94670bb990564d0d0c547 (diff) | |
Merge pull request #4115 from aldelaro5/memorycheck-memorywindow-update-fix
Fix the breakpoint list not updating after adding a memory check via the memory view
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp index eac9933294..8a46245f37 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindowFunctions.cpp @@ -604,7 +604,7 @@ void CCodeWindow::ToggleMemoryWindow(bool bShow) if (bShow) { if (!m_MemoryWindow) - m_MemoryWindow = new CMemoryWindow(Parent, IDM_MEMORY_WINDOW); + m_MemoryWindow = new CMemoryWindow(this, Parent, IDM_MEMORY_WINDOW); Parent->DoAddPage(m_MemoryWindow, iNbAffiliation[IDM_MEMORY_WINDOW - IDM_LOG_WINDOW], Parent->bFloatWindow[IDM_MEMORY_WINDOW - IDM_LOG_WINDOW]); } |
