]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed assert in SetItemText() for wxTR_MULTIPLE controls
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 10 Jun 2004 11:29:49 +0000 (11:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 10 Jun 2004 11:29:49 +0000 (11:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/treectrl.h

index 458156fdf2ba5c81202e7e7e61329ee28b0b4a5a..dc498628989ad7e02b006fff3bbdce02a102c756 100644 (file)
@@ -446,10 +446,14 @@ protected:
     // refresh a single item
     void RefreshItem(const wxTreeItemId& item);
 
-    wxTextCtrl  *m_textCtrl;        // used while editing the item label
+    // data used only while editing the item label:
+    wxTextCtrl  *m_textCtrl;        // text control in which it is edited
+    wxTreeItemId m_idEdited;        // the item being edited
+
     wxImageList *m_imageListNormal, // images for tree elements
                 *m_imageListState;  // special images for app defined states
-    bool         m_ownsImageListNormal, m_ownsImageListState;
+    bool         m_ownsImageListNormal,
+                 m_ownsImageListState;
 
 private:
     // the common part of all ctors