Author: dquintana Date: Sun Feb 15 18:05:34 2015 New Revision: 66301
URL: http://svn.reactos.org/svn/reactos?rev=66301&view=rev Log: [SHELL32] * Include enumeration of hidden files in the default shell view, until we have a proper way of toggling it. CORE-9192
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 Feb 15 18:05:34 2015 @@ -868,7 +868,8 @@ TRACE("%p\n", this);
/* get the itemlist from the shfolder*/ - hRes = m_pSFParent->EnumObjects(m_hWnd, SHCONTF_NONFOLDERS | SHCONTF_FOLDERS, &pEnumIDList); + /* FIXME: make showing hidden files a setting. */ + hRes = m_pSFParent->EnumObjects(m_hWnd, SHCONTF_NONFOLDERS | SHCONTF_FOLDERS | SHCONTF_INCLUDEHIDDEN, &pEnumIDList); if (hRes != S_OK) { if (hRes == S_FALSE)