From 3686848981ccc3550a5de0409d1e5e3b4ea24dfb Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 10 Feb 2015 23:14:39 +0000 Subject: [PATCH] Fix typos in wxTreeEvent::GetOldItem() documentation. Use the correct EVT_TREE_SEL_CHANG{ING,ED} event names instead of the non-existent EVT_TREE_ITEM_CHANG{ING,ED} ones. Closes #16847. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/treectrl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/treectrl.h b/interface/wx/treectrl.h index c25ec38866..d1b8f9eaaa 100644 --- a/interface/wx/treectrl.h +++ b/interface/wx/treectrl.h @@ -1095,8 +1095,8 @@ public: const wxString& GetLabel() const; /** - Returns the old item index (valid for @c EVT_TREE_ITEM_CHANGING and - @c EVT_TREE_ITEM_CHANGED events). + Returns the old item index (valid for @c EVT_TREE_SEL_CHANGING and + @c EVT_TREE_SEL_CHANGED events). */ wxTreeItemId GetOldItem() const;