set m_itemIndex in the list events for key down event too
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10923 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1498,7 +1498,6 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
|||||||
!(wxIsShiftDown() || wxIsCtrlDown()) )
|
!(wxIsShiftDown() || wxIsCtrlDown()) )
|
||||||
{
|
{
|
||||||
eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
|
eventType = wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
|
||||||
event.m_itemIndex = lItem;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@@ -1506,6 +1505,9 @@ bool wxListCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
|
|||||||
event.m_code = wxCharCodeMSWToWX(wVKey);
|
event.m_code = wxCharCodeMSWToWX(wVKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
event.m_itemIndex =
|
||||||
|
event.m_item.m_itemId = lItem;
|
||||||
|
|
||||||
if ( lItem != -1 )
|
if ( lItem != -1 )
|
||||||
{
|
{
|
||||||
// fill the other fields too
|
// fill the other fields too
|
||||||
|
Reference in New Issue
Block a user