Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
0b6cf6e4
Commit
0b6cf6e4
authored
Oct 12, 2012
by
Daniel Jelinski
Committed by
Alexandre Julliard
Oct 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix notifications and return value when collapsing already collapsed node.
parent
9933f5e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
treeview.c
dlls/comctl32/tests/treeview.c
+1
-1
treeview.c
dlls/comctl32/treeview.c
+4
-2
No files found.
dlls/comctl32/tests/treeview.c
View file @
0b6cf6e4
...
...
@@ -1395,7 +1395,7 @@ static void test_expandnotify(void)
flush_sequences
(
sequences
,
NUM_MSG_SEQUENCES
);
ret
=
SendMessageA
(
hTree
,
TVM_EXPAND
,
TVE_COLLAPSE
,
(
LPARAM
)
hRoot
);
todo_wine
expect
(
FALSE
,
ret
);
expect
(
FALSE
,
ret
);
ok_sequence
(
sequences
,
PARENT_SEQ_INDEX
,
empty_seq
,
"no collapse notifications"
,
FALSE
);
g_get_from_expand
=
TRUE
;
...
...
dlls/comctl32/treeview.c
View file @
0b6cf6e4
...
...
@@ -3234,6 +3234,7 @@ TREEVIEW_Collapse(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item,
RECT
scrollRect
;
LONG
scrollDist
=
0
;
TREEVIEW_ITEM
*
nextItem
=
NULL
,
*
tmpItem
;
BOOL
wasExpanded
;
TRACE
(
"TVE_COLLAPSE %p %s
\n
"
,
item
,
TREEVIEW_ItemName
(
item
));
...
...
@@ -3246,9 +3247,10 @@ TREEVIEW_Collapse(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item,
if
(
item
->
firstChild
==
NULL
)
return
FALSE
;
wasExpanded
=
(
item
->
state
&
TVIS_EXPANDED
)
!=
0
;
item
->
state
&=
~
TVIS_EXPANDED
;
if
(
bUser
)
if
(
wasExpanded
&&
bUser
)
TREEVIEW_SendExpanded
(
infoPtr
,
item
,
action
);
bSetSelection
=
(
infoPtr
->
selectedItem
!=
NULL
...
...
@@ -3329,7 +3331,7 @@ TREEVIEW_Collapse(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *item,
bSetFirstVisible
?
item
:
infoPtr
->
firstVisible
,
TRUE
);
return
TRUE
;
return
wasExpanded
;
}
static
BOOL
...
...
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