diff options
| author | Lioncash <mathew1800@gmail.com> | 2014-07-10 20:26:08 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2014-07-10 20:29:55 -0400 |
| commit | 32d53c7d1dc925e027be0823257467539ce8dd77 (patch) | |
| tree | 3a92d4881cca84ef4535f90d2264b0e9fd0ce08e /Source/Core/DolphinWX/Debugger/CodeWindow.cpp | |
| parent | a546ef3276f4533f489a6381219199312e63f5df (diff) | |
DolphinWX: Get rid of an unneccessary cast in CodeWindow
CFrame inherits from CRenderFrame which inherits from wxFrame which
eventually inherits from wxWindow, so this cast is not required.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/CodeWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index b8185a85cc..e1c3aaf8ae 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -87,7 +87,7 @@ END_EVENT_TABLE() // Class CCodeWindow::CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter, CFrame *parent, wxWindowID id, const wxPoint& position, const wxSize& size, long style, const wxString& name) - : wxPanel((wxWindow*)parent, id, position, size, style, name) + : wxPanel(parent, id, position, size, style, name) , Parent(parent) , m_RegisterWindow(nullptr) , m_BreakpointWindow(nullptr) |
