From 47678105333557b1a5f225fe57e4ae27fa4b8706 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 5 Mar 2000 11:45:03 +0000 Subject: [PATCH] Fixed blatant non-initialisation bug git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/treectrl/treetest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/treectrl/treetest.cpp b/samples/treectrl/treetest.cpp index 2b46734d3f..9a0b6e0b30 100644 --- a/samples/treectrl/treetest.cpp +++ b/samples/treectrl/treetest.cpp @@ -507,6 +507,7 @@ MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, : wxTreeCtrl(parent, id, pos, size, style) { m_reverseSort = FALSE; + m_imageListNormal = NULL; CreateImageList(); -- 2.45.2