Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b75b9fab
Commit
b75b9fab
authored
Nov 12, 2010
by
Andrew Eikum
Committed by
Alexandre Julliard
Nov 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: PIDLs should be checked recursively in SHChangeNotify.
parent
71fad7d1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
changenotify.c
dlls/shell32/changenotify.c
+1
-1
shlfolder.c
dlls/shell32/tests/shlfolder.c
+1
-0
No files found.
dlls/shell32/changenotify.c
View file @
b75b9fab
...
...
@@ -243,7 +243,7 @@ static BOOL should_notify( LPCITEMIDLIST changed, LPCITEMIDLIST watched, BOOL su
return
FALSE
;
if
(
ILIsEqual
(
watched
,
changed
)
)
return
TRUE
;
if
(
sub
&&
ILIsParent
(
watched
,
changed
,
TRU
E
)
)
if
(
sub
&&
ILIsParent
(
watched
,
changed
,
FALS
E
)
)
return
TRUE
;
return
FALSE
;
}
...
...
dlls/shell32/tests/shlfolder.c
View file @
b75b9fab
...
...
@@ -4218,6 +4218,7 @@ struct ChNotifyTest {
const
char
path_2
[
256
];
}
chnotify_tests
[]
=
{
{
"MKDIR"
,
1
,
0
,
SHCNE_MKDIR
,
"C:
\\
shell32_cn_test
\\
test"
,
""
},
{
"CREATE"
,
1
,
0
,
SHCNE_CREATE
,
"C:
\\
shell32_cn_test
\\
test
\\
file.txt"
,
""
},
{
"RMDIR"
,
1
,
0
,
SHCNE_RMDIR
,
"C:
\\
shell32_cn_test
\\
test"
,
""
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment