]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/treectrl.h
conversions from int/long to wxString won't compile any more
[wxWidgets.git] / include / wx / generic / treectrl.h
index 29acb18cea2bd26254fed4a768dd977755907071..014a048ce55df85be33e1861bcd1c3368637cce3 100644 (file)
@@ -333,6 +333,8 @@ public:
     wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& cookie) const;
         // get the next child
     wxTreeItemId GetNextChild(const wxTreeItemId& item, long& cookie) const;
+        // get the last child of this item - this method doesn't use cookies
+    wxTreeItemId GetLastChild(const wxTreeItemId& item) const;
 
         // get the next sibling of this item
     wxTreeItemId GetNextSibling(const wxTreeItemId& item) const;
@@ -456,6 +458,7 @@ protected:
     wxBrush             *m_hilightBrush;
     wxImageList         *m_imageListNormal,
                         *m_imageListState;
+    int                  m_dragCount;
 
     // the common part of all ctors
     void Init();