From: Julian Smart Date: Sun, 5 Mar 2000 11:45:03 +0000 (+0000) Subject: Fixed blatant non-initialisation bug X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/47678105333557b1a5f225fe57e4ae27fa4b8706 Fixed blatant non-initialisation bug git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6455 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- 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();