Fix uninitialized pointer in PROJECT_TREE
This commit is contained in:
parent
dd4c2a6001
commit
6c4a294c0a
|
@ -46,7 +46,8 @@ PROJECT_TREE::PROJECT_TREE( PROJECT_TREE_PANE* parent ) :
|
||||||
wxTreeCtrl( parent, ID_PROJECT_TREE, wxDefaultPosition, wxDefaultSize,
|
wxTreeCtrl( parent, ID_PROJECT_TREE, wxDefaultPosition, wxDefaultSize,
|
||||||
PLATFORM_STYLE | wxTR_HAS_BUTTONS | wxTR_MULTIPLE, wxDefaultValidator,
|
PLATFORM_STYLE | wxTR_HAS_BUTTONS | wxTR_MULTIPLE, wxDefaultValidator,
|
||||||
wxT( "EDATreeCtrl" ) ),
|
wxT( "EDATreeCtrl" ) ),
|
||||||
m_imageList( nullptr )
|
m_imageList( nullptr ),
|
||||||
|
m_statusImageList( nullptr )
|
||||||
{
|
{
|
||||||
m_projectTreePane = parent;
|
m_projectTreePane = parent;
|
||||||
m_gitCommon = new KIGIT_COMMON( nullptr );
|
m_gitCommon = new KIGIT_COMMON( nullptr );
|
||||||
|
|
Loading…
Reference in New Issue