Author: hbelusca Date: Sun Jan 29 13:48:39 2017 New Revision: 73619
URL: http://svn.reactos.org/svn/reactos?rev=73619&view=rev Log: [SHELL32]: Fix build on *sane* compilers (wth, is that an assignment without the equal sign, or a called constructor, missing its parentheses?!).
Modified: trunk/reactos/dll/win32/shell32/CDefView.cpp
Modified: trunk/reactos/dll/win32/shell32/CDefView.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/CDefView.... ============================================================================== --- trunk/reactos/dll/win32/shell32/CDefView.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/CDefView.cpp [iso-8859-1] Sun Jan 29 13:48:39 2017 @@ -2828,7 +2828,7 @@
/* 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);