]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix same compilation again, I guess 0 was
authorRobert Roebling <robert@roebling.de>
Mon, 21 Aug 2006 14:15:46 +0000 (14:15 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 21 Aug 2006 14:15:46 +0000 (14:15 +0000)
    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

index e9bfaa8961a391625e4190383a00dbe4806bbc75..4aa5c5ec8f3894b7441539d745c013103d8d4e59 100644 (file)
@@ -293,7 +293,7 @@ class wxTreeItemParam
 {
 public:
     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++ )
           m_data(NULL)
     {
         for ( size_t n = 0; n < WXSIZEOF(m_images); n++ )