mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #598 from lioncash/casts
DolphinWX: Get rid of an unneccessary cast in CodeWindow
This commit is contained in:
commit
8059f80282
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ END_EVENT_TABLE()
|
||||||
// Class
|
// Class
|
||||||
CCodeWindow::CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter, CFrame *parent,
|
CCodeWindow::CCodeWindow(const SCoreStartupParameter& _LocalCoreStartupParameter, CFrame *parent,
|
||||||
wxWindowID id, const wxPoint& position, const wxSize& size, long style, const wxString& name)
|
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)
|
, Parent(parent)
|
||||||
, m_RegisterWindow(nullptr)
|
, m_RegisterWindow(nullptr)
|
||||||
, m_BreakpointWindow(nullptr)
|
, m_BreakpointWindow(nullptr)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue