mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-13 12:36:41 +00:00
GUI: Initialize all class members
CID 146979 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)2. uninit_member: Non-static class member m_miscGroup is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
parent
578b75aa76
commit
c912064c8d
@ -28,8 +28,8 @@ namespace Panels
|
||||
wxStaticBoxSizer* m_miscGroup;
|
||||
|
||||
public:
|
||||
BaseCpuLogOptionsPanel( wxWindow* parent, const wxString& title, wxOrientation orient=wxVERTICAL )
|
||||
: CheckedStaticBox( parent, orient, title ) {}
|
||||
BaseCpuLogOptionsPanel(wxWindow* parent, const wxString& title, wxOrientation orient = wxVERTICAL)
|
||||
: CheckedStaticBox(parent, orient, title), m_miscGroup(NULL){}
|
||||
|
||||
virtual wxStaticBoxSizer* GetMiscGroup() const { return m_miscGroup; }
|
||||
virtual CheckedStaticBox* GetStaticBox( const wxString& subgroup ) const=0;
|
||||
|
Loading…
Reference in New Issue
Block a user