mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[SHELL32]: Fix build on *sane* compilers (wth, is that an assignment without the equal sign, or a called constructor, missing its parentheses?!).
svn path=/trunk/; revision=73619
This commit is contained in:
parent
9a649094dc
commit
a5fd03e6e1
1 changed files with 1 additions and 1 deletions
|
@ -2828,7 +2828,7 @@ HRESULT CDefView::drag_notify_subitem(DWORD grfKeyState, POINTL pt, DWORD *pdwEf
|
|||
|
||||
/* Map from global to client coordinates and query the index of the listview-item, which is
|
||||
* currently under the mouse cursor. */
|
||||
LVHITTESTINFO htinfo { {pt.x, pt.y}, LVHT_ONITEM};
|
||||
LVHITTESTINFO htinfo = {{pt.x, pt.y}, LVHT_ONITEM};
|
||||
ScreenToClient(&htinfo.pt);
|
||||
lResult = m_ListView.HitTest(&htinfo);
|
||||
|
||||
|
|
Loading…
Reference in a new issue