diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-11-11 13:31:36 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-11-11 13:31:36 -0500 |
| commit | cd9520f458023e7e771b2feabc4bbb3fb2cfcf0b (patch) | |
| tree | 22ae5fc5e84fa6e22a524149160c9cf6619ef349 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | 492b82042dd94791b8c42fc0d19daf013ee5b7ba (diff) | |
CodeWindow: In-class initialize variables where applicable
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index 6f0e215272..1465437152 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -53,8 +53,7 @@ CCodeWindow::CCodeWindow(CFrame* parent, wxWindowID id, const wxPoint& position, const wxSize& size, long style, const wxString& name) - : wxPanel(parent, id, position, size, style, name), m_sibling_panels(), Parent(parent), - codeview(nullptr) + : wxPanel(parent, id, position, size, style, name), Parent(parent) { DebugInterface* di = &PowerPC::debug_interface; |
