summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-07-11 02:32:40 +0200
committerPierre Bourdon <delroth@gmail.com>2014-07-11 02:32:40 +0200
commit8059f80282418a478c3a8f01c0bea16427a51f9b (patch)
tree3a92d4881cca84ef4535f90d2264b0e9fd0ce08e /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parenta546ef3276f4533f489a6381219199312e63f5df (diff)
parent32d53c7d1dc925e027be0823257467539ce8dd77 (diff)
Merge pull request #598 from lioncash/casts
DolphinWX: Get rid of an unneccessary cast in CodeWindow
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp2
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)