mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
- 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:
parent
ff02c3ff0f
commit
6243c9c750
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue