mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:15:41 +00:00
[SHELL32]
- Remove a debug message that should have been removed before committing. - Also fix a test failure. svn path=/trunk/; revision=71244
This commit is contained in:
parent
48cee97ceb
commit
92ad6046bc
1 changed files with 2 additions and 4 deletions
|
@ -310,8 +310,6 @@ HRESULT CDesktopFolder::_GetSFFromPidl(LPCITEMIDLIST pidl, IShellFolder2** psf)
|
||||||
if (!_ILSimpleGetTextW(pidl, szFileName + cLen, MAX_PATH - cLen))
|
if (!_ILSimpleGetTextW(pidl, szFileName + cLen, MAX_PATH - cLen))
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
|
||||||
ERR("%S\n", szFileName);
|
|
||||||
|
|
||||||
if (GetFileAttributes(szFileName) == INVALID_FILE_ATTRIBUTES)
|
if (GetFileAttributes(szFileName) == INVALID_FILE_ATTRIBUTES)
|
||||||
return m_SharedDesktopFSFolder->QueryInterface(IID_PPV_ARG(IShellFolder2, psf));
|
return m_SharedDesktopFSFolder->QueryInterface(IID_PPV_ARG(IShellFolder2, psf));
|
||||||
else
|
else
|
||||||
|
@ -445,8 +443,8 @@ HRESULT WINAPI CDesktopFolder::BindToObject(
|
||||||
REFIID riid,
|
REFIID riid,
|
||||||
LPVOID *ppvOut)
|
LPVOID *ppvOut)
|
||||||
{
|
{
|
||||||
TRACE ("(%p)->(pidl=%p,%p,%s,%p)\n",
|
if (!pidl)
|
||||||
this, pidl, pbcReserved, shdebugstr_guid (&riid), ppvOut);
|
return E_INVALIDARG;
|
||||||
|
|
||||||
if (_ILIsSpecialFolder(pidl))
|
if (_ILIsSpecialFolder(pidl))
|
||||||
return SHELL32_BindToGuidItem(pidlRoot, pidl, pbcReserved, riid, ppvOut);
|
return SHELL32_BindToGuidItem(pidlRoot, pidl, pbcReserved, riid, ppvOut);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue