wxTREE_INSERT_XXX constants were incorrectly defined (and so inserting the

items at the end, for example, didn't work)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-08-07 22:30:12 +00:00
parent dc1c4b6213
commit 3197ed26f0

View File

@@ -75,11 +75,9 @@ enum {
}; };
// Flags for InsertItem // Flags for InsertItem
enum { #define wxTREE_INSERT_FIRST 0xFFFF0001
wxTREE_INSERT_LAST = -1, #define wxTREE_INSERT_LAST 0xFFFF0002
wxTREE_INSERT_FIRST = -2, #define wxTREE_INSERT_SORT 0xFFFF0003
wxTREE_INSERT_SORT = -3
};
class WXDLLEXPORT wxTreeItem: public wxObject class WXDLLEXPORT wxTreeItem: public wxObject
{ {