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
e98cef49
Commit
e98cef49
authored
Jul 21, 2011
by
Jay Yang
Committed by
Alexandre Julliard
Jul 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comclt32: Ensure that item data is actually sent out with notifications.
parent
dadcdb71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
comboex.c
dlls/comctl32/comboex.c
+2
-0
No files found.
dlls/comctl32/comboex.c
View file @
e98cef49
...
...
@@ -672,6 +672,7 @@ static INT COMBOEX_InsertItemW (COMBOEX_INFO *infoPtr, COMBOBOXEXITEMW const *ci
SendMessageW
(
infoPtr
->
hwndCombo
,
CB_INSERTSTRING
,
cit
->
iItem
,
(
LPARAM
)
item
);
memset
(
&
nmcit
.
ceItem
,
0
,
sizeof
(
nmcit
.
ceItem
));
nmcit
.
ceItem
.
mask
=~
0
;
COMBOEX_CopyItem
(
item
,
&
nmcit
.
ceItem
);
COMBOEX_NotifyItem
(
infoPtr
,
CBEN_INSERTITEM
,
&
nmcit
);
...
...
@@ -1304,6 +1305,7 @@ static BOOL COMBOEX_WM_DeleteItem (COMBOEX_INFO *infoPtr, DELETEITEMSTRUCT const
infoPtr
->
nb_items
--
;
memset
(
&
nmcit
.
ceItem
,
0
,
sizeof
(
nmcit
.
ceItem
));
nmcit
.
ceItem
.
mask
=~
0
;
COMBOEX_CopyItem
(
olditem
,
&
nmcit
.
ceItem
);
COMBOEX_NotifyItem
(
infoPtr
,
CBEN_DELETEITEM
,
&
nmcit
);
...
...
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