CodeWindow: Remove unused parameter from constructor

This commit is contained in:
Lioncash
2016-11-11 13:20:47 -05:00
parent e8af48adfc
commit 492b82042d
3 changed files with 7 additions and 7 deletions

View File

@ -75,9 +75,10 @@ struct DebugPanelToID<GFXDebuggerPanel>
class CCodeWindow : public wxPanel
{
public:
CCodeWindow(const SConfig& _LocalCoreStartupParameter, CFrame* parent, wxWindowID id = wxID_ANY,
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxBORDER_NONE, const wxString& name = _("Code"));
explicit CCodeWindow(CFrame* parent, wxWindowID id = wxID_ANY,
const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxBORDER_NONE,
const wxString& name = _("Code"));
~CCodeWindow();
void Load();