diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-18 20:32:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-18 20:32:26 +0300 |
commit | 06181106249ab68459bb609254b799adaddd6583 (patch) | |
tree | 01971242b28a84a1876f904f8f74fc9c3958024a /src/mir_core | |
parent | fbc1add780b58370aeb87abfd1915a8fd7ef1710 (diff) |
fix for CCtrlTreeView::OnItemChanged prototype
Diffstat (limited to 'src/mir_core')
-rw-r--r-- | src/mir_core/src/CCtrlTreeView.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mir_core/src/CCtrlTreeView.cpp b/src/mir_core/src/CCtrlTreeView.cpp index 52c7df846b..1852517a9d 100644 --- a/src/mir_core/src/CCtrlTreeView.cpp +++ b/src/mir_core/src/CCtrlTreeView.cpp @@ -280,8 +280,9 @@ BOOL CCtrlTreeView::OnNotify(int, NMHDR *pnmh) case TVN_KEYDOWN: if (evt.nmtvkey->wVKey == VK_SPACE) { + evt.hItem = GetSelection(); if (m_bCheckBox) - InvertCheck(GetSelection()); + InvertCheck(evt.hItem); OnItemChanged(&evt); NotifyChange(); } @@ -301,6 +302,8 @@ BOOL CCtrlTreeView::OnNotify(int, NMHDR *pnmh) InvertCheck(hti.hItem); else SelectItem(hti.hItem); + + evt.hItem = hti.hItem; OnItemChanged(&evt); NotifyChange(); } |