[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:
Hermès Bélusca-Maïto 2017-01-29 13:48:39 +00:00
parent 9a649094dc
commit a5fd03e6e1

View file

@ -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);