mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 12:22:22 +00:00
[SHELL32]
* Include enumeration of hidden files in the default shell view, until we have a proper way of toggling it. CORE-9192 svn path=/trunk/; revision=66301
This commit is contained in:
parent
b3038d2a51
commit
384d4f06d5
1 changed files with 2 additions and 1 deletions
|
@ -868,7 +868,8 @@ HRESULT CDefView::FillList()
|
|||
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue