mirror of https://github.com/PCSX2/pcsx2.git
GUI: Initialize all class members
CID 146978 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)4. uninit_member: Non-static class member s_rightside_buttons is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
parent
61e1686da3
commit
578b75aa76
|
@ -190,6 +190,8 @@ Panels::BaseMcdListPanel::BaseMcdListPanel( wxWindow* parent )
|
||||||
);
|
);
|
||||||
|
|
||||||
m_listview = NULL;
|
m_listview = NULL;
|
||||||
|
s_leftside_buttons = NULL;
|
||||||
|
s_rightside_buttons = NULL;
|
||||||
|
|
||||||
m_btn_Refresh = new wxButton( this, wxID_ANY, _("Refresh list") );
|
m_btn_Refresh = new wxButton( this, wxID_ANY, _("Refresh list") );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue