mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 21:56:06 +00:00
[SHELL32]
- Check if querying shell details failed svn path=/trunk/; revision=54860
This commit is contained in:
parent
6df852ceb8
commit
0ff1f7b6ae
1 changed files with 6 additions and 1 deletions
|
@ -1682,7 +1682,12 @@ LRESULT CDefView::OnNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandl
|
|||
if (pSF2Parent)
|
||||
{
|
||||
SHELLDETAILS sd;
|
||||
pSF2Parent->GetDetailsOf(pidl, lpdi->item.iSubItem, &sd);
|
||||
if (FAILED(pSF2Parent->GetDetailsOf(pidl, lpdi->item.iSubItem, &sd)))
|
||||
{
|
||||
FIXME("failed to get details\n");
|
||||
break;
|
||||
}
|
||||
|
||||
if (lpnmh->code == LVN_GETDISPINFOA)
|
||||
{
|
||||
/* shouldn't happen */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue