mirror of https://github.com/PCSX2/pcsx2.git
GUI: Initialize all class members
CID 146980 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)2. uninit_member: Non-static class member m_panel is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
parent
c912064c8d
commit
589e838fa0
|
@ -227,7 +227,7 @@ protected:
|
|||
IMPLEMENT_DYNAMIC_CLASS(ApplyPluginsDialog, WaitForTaskDialog)
|
||||
|
||||
ApplyPluginsDialog::ApplyPluginsDialog( BaseApplicableConfigPanel* panel )
|
||||
: WaitForTaskDialog( _("Applying settings...") )
|
||||
: WaitForTaskDialog(_("Applying settings...")), m_panel(NULL)
|
||||
{
|
||||
GetSysExecutorThread().PostEvent( new SysExecEvent_ApplyPlugins( this, m_sync ) );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue