From 99654c4ef6174585ff35c78607235f8c9aea7649 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 14 Aug 2003 00:59:29 +0000 Subject: [PATCH] made wxTreeItemIdValue typedef for long, not ulong, so that it is possible to write code working for both 2.4 and 2.5 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@22837 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/treebase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/treebase.h b/include/wx/treebase.h index 426705f441..10582220a2 100644 --- a/include/wx/treebase.h +++ b/include/wx/treebase.h @@ -33,7 +33,7 @@ // ---------------------------------------------------------------------------- // Using this typedef removes an ambiguity when calling Remove() -typedef unsigned long wxTreeItemIdValue; +typedef long wxTreeItemIdValue; class WXDLLEXPORT wxTreeItemId {