[SHELL32]

- Implement handling ctrl+A in the shell view control.

svn path=/trunk/; revision=67024
This commit is contained in:
Giannis Adamopoulos 2015-04-03 16:49:24 +00:00
parent 83f07e32ef
commit e68fe3a3b4

View file

@ -1601,6 +1601,10 @@ LRESULT CDefView::OnCommand(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHand
m_ListView.SortItems(ListViewCompareItems, &m_sortInfo); m_ListView.SortItems(ListViewCompareItems, &m_sortInfo);
break; break;
case FCIDM_SHVIEW_SELECTALL:
m_ListView.SetItemState(-1, LVIS_SELECTED, LVIS_SELECTED);
break;
case FCIDM_SHVIEW_REFRESH: case FCIDM_SHVIEW_REFRESH:
Refresh(); Refresh();
break; break;