- should_notify should check if the changed pidl is really a child of the containing folder.

- fixes bug 2789

svn path=/trunk/; revision=30107
This commit is contained in:
Johannes Anderwald 2007-11-04 12:00:16 +00:00
parent ff02c3ff0f
commit 6243c9c750

View file

@ -267,7 +267,7 @@ static BOOL should_notify( LPCITEMIDLIST changed, LPCITEMIDLIST watched, BOOL su
return FALSE;
if (ILIsEqual( watched, changed ) )
return TRUE;
if( sub && ILIsParent( watched, changed, FALSE ) )
if( sub && ILIsParent( watched, changed, TRUE ) )
return TRUE;
return FALSE;
}