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:
Akash 2015-10-23 14:54:45 +05:30
parent c912064c8d
commit 589e838fa0
1 changed files with 1 additions and 1 deletions

View File

@ -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 ) );
}