mention incompatible change in EVT_TREE_ITEM_ACTIVATED behaviour under MSW

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@60217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-04-17 13:24:00 +00:00
parent e787be7457
commit f689ef03fa

View File

@@ -91,6 +91,15 @@ Major new features in 2.8 release
2.8.11:
-------
*** INCOMPATIBLE CHANGE: ***
Due to an oversight, a bug fix in wxMSW resulted in an incompatible change in
wxTreeCtrl behaviour: its EVT_TREE_ITEM_ACTIVATED handler now must skip the
event being processed to allow the item to be toggled by double clicking on it.
I.e. you need to ensure there is an "event.Skip()" in your item activation
handler if you do wish to allow the item to be toggled.
All:
- Added several functions forward compatible with wxWidgets 3.0 (troelsk):