mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
CodeWindow: Remove unused parameter from constructor
This commit is contained in:
@ -51,9 +51,8 @@
|
|||||||
#include "DolphinWX/Globals.h"
|
#include "DolphinWX/Globals.h"
|
||||||
#include "DolphinWX/WxUtils.h"
|
#include "DolphinWX/WxUtils.h"
|
||||||
|
|
||||||
CCodeWindow::CCodeWindow(const SConfig& _LocalCoreStartupParameter, CFrame* parent, wxWindowID id,
|
CCodeWindow::CCodeWindow(CFrame* parent, wxWindowID id, const wxPoint& position, const wxSize& size,
|
||||||
const wxPoint& position, const wxSize& size, long style,
|
long style, const wxString& name)
|
||||||
const wxString& name)
|
|
||||||
: wxPanel(parent, id, position, size, style, name), m_sibling_panels(), Parent(parent),
|
: wxPanel(parent, id, position, size, style, name), m_sibling_panels(), Parent(parent),
|
||||||
codeview(nullptr)
|
codeview(nullptr)
|
||||||
{
|
{
|
||||||
|
@ -75,9 +75,10 @@ struct DebugPanelToID<GFXDebuggerPanel>
|
|||||||
class CCodeWindow : public wxPanel
|
class CCodeWindow : public wxPanel
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CCodeWindow(const SConfig& _LocalCoreStartupParameter, CFrame* parent, wxWindowID id = wxID_ANY,
|
explicit CCodeWindow(CFrame* parent, wxWindowID id = wxID_ANY,
|
||||||
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
|
||||||
long style = wxTAB_TRAVERSAL | wxBORDER_NONE, const wxString& name = _("Code"));
|
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
|
||||||
|
const wxString& name = _("Code"));
|
||||||
~CCodeWindow();
|
~CCodeWindow();
|
||||||
|
|
||||||
void Load();
|
void Load();
|
||||||
|
@ -324,7 +324,7 @@ CFrame::CFrame(wxFrame* parent, wxWindowID id, const wxString& title, wxRect geo
|
|||||||
// Debugger class
|
// Debugger class
|
||||||
if (UseDebugger)
|
if (UseDebugger)
|
||||||
{
|
{
|
||||||
g_pCodeWindow = new CCodeWindow(SConfig::GetInstance(), this, IDM_CODE_WINDOW);
|
g_pCodeWindow = new CCodeWindow(this, IDM_CODE_WINDOW);
|
||||||
LoadIniPerspectives();
|
LoadIniPerspectives();
|
||||||
g_pCodeWindow->Load();
|
g_pCodeWindow->Load();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user