From a680f9a170175cfc8d0dbd6b8bf5299033cdb802 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 21 Aug 2006 14:15:46 +0000 Subject: [PATCH] Fix same compilation again, I guess 0 was meant to initialize the wxTreeItemId to nothing. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40717 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/treectrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msw/treectrl.cpp b/src/msw/treectrl.cpp index e9bfaa8961..4aa5c5ec8f 100644 --- a/src/msw/treectrl.cpp +++ b/src/msw/treectrl.cpp @@ -293,7 +293,7 @@ class wxTreeItemParam { public: wxTreeItemParam() - : m_item((void*)NULL), + : m_item((long int)0), m_data(NULL) { for ( size_t n = 0; n < WXSIZEOF(m_images); n++ ) -- 2.50.0