diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-11-11 13:20:47 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-11-11 13:20:47 -0500 |
| commit | 492b82042dd94791b8c42fc0d19daf013ee5b7ba (patch) | |
| tree | 19b40a27d1e29b8956f1eb773401dc32bd7c5489 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | e8af48adfca6e6fb291c5c715af1562569dc1bd3 (diff) | |
CodeWindow: Remove unused parameter from constructor
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index c39efe0047..6f0e215272 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -51,9 +51,8 @@ #include "DolphinWX/Globals.h" #include "DolphinWX/WxUtils.h" -CCodeWindow::CCodeWindow(const SConfig& _LocalCoreStartupParameter, CFrame* parent, wxWindowID id, - const wxPoint& position, const wxSize& size, long style, - const wxString& name) +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) { |
