Author: ashaposhnikov Date: Wed Jul 26 17:27:34 2017 New Revision: 75413
URL: http://svn.reactos.org/svn/reactos?rev=75413&view=rev Log: [RAPPS] - A quick fix for counter - used a list that is not updated prior to the message
Modified: branches/GSoC_2017/rapps/reactos/base/applications/rapps/gui.cpp
Modified: branches/GSoC_2017/rapps/reactos/base/applications/rapps/gui.cpp URL: http://svn.reactos.org/svn/reactos/branches/GSoC_2017/rapps/reactos/base/app... ============================================================================== --- branches/GSoC_2017/rapps/reactos/base/applications/rapps/gui.cpp [iso-8859-1] (original) +++ branches/GSoC_2017/rapps/reactos/base/applications/rapps/gui.cpp [iso-8859-1] Wed Jul 26 17:27:34 2017 @@ -1023,7 +1023,7 @@ /* Check if the item is checked */ if ((pnic->uNewState & LVIS_STATEIMAGEMASK) && !bUpdating) { - BOOL checked = m_ListView->GetCheckState(pnic->iItem); + BOOL checked = ListView_GetCheckState(pnic->hdr.hwndFrom, pnic->iItem); nSelectedApps += (checked) ? 1 : -1; UpdateStatusBarText(); }