From: Robert Roebling Date: Mon, 21 Aug 2006 14:15:46 +0000 (+0000) Subject: Fix same compilation again, I guess 0 was X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a680f9a170175cfc8d0dbd6b8bf5299033cdb802?ds=sidebyside 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 --- 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++ )