]> git.saurik.com Git - wxWidgets.git/commit - src/msw/treectrl.cpp
Don't send wxEVT_COMMAND_TREE_ITEM_MENU event without valid item in wxMSW.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Oct 2010 22:40:52 +0000 (22:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 24 Oct 2010 22:40:52 +0000 (22:40 +0000)
commit22993989b4d5f77b95f7cdc3f4d149516340db91
tree81ff5046392f13e1d64d359f7287cf513daf74e5
parent0bb84570cea789202aa26409a4879202a9810b70
Don't send wxEVT_COMMAND_TREE_ITEM_MENU event without valid item in wxMSW.

The generic wxTreeCtrl version only sends this event when the mouse is right
clicked on a valid item so do the same in wxMSW version too for consistency.

This is also consistent with wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK event and
avoids strange problems with unexpected wxEVT_COMMAND_TREE_ITEM_MENU events
generated on right double click.

Finally, replace the checks for item validity in the event handler in the
sample with asserts which should loudly complain if it happens to be invalid.

Closes #11226.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
samples/treectrl/treetest.cpp
src/msw/treectrl.cpp