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
18420c24
Commit
18420c24
authored
Jun 28, 2018
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Fix order of items passed in WM_COMPAREITEM data.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
35d902e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
listbox.c
dlls/user32/listbox.c
+6
-6
msg.c
dlls/user32/tests/msg.c
+0
-4
No files found.
dlls/user32/listbox.c
View file @
18420c24
...
...
@@ -835,7 +835,7 @@ static INT LISTBOX_FindStringPos( LB_DESCR *descr, LPCWSTR str, BOOL exact )
{
index
=
(
min
+
max
)
/
2
;
if
(
HAS_STRINGS
(
descr
))
res
=
LISTBOX_lstrcmpiW
(
descr
->
locale
,
str
,
descr
->
items
[
index
].
str
);
res
=
LISTBOX_lstrcmpiW
(
descr
->
locale
,
descr
->
items
[
index
].
str
,
str
);
else
{
COMPAREITEMSTRUCT
cis
;
...
...
@@ -846,15 +846,15 @@ static INT LISTBOX_FindStringPos( LB_DESCR *descr, LPCWSTR str, BOOL exact )
cis
.
hwndItem
=
descr
->
self
;
/* note that some application (MetaStock) expects the second item
* to be in the listbox */
cis
.
itemID1
=
-
1
;
cis
.
itemData1
=
(
ULONG_PTR
)
str
;
cis
.
itemID2
=
index
;
cis
.
itemData2
=
descr
->
items
[
index
].
data
;
cis
.
itemID1
=
index
;
cis
.
itemData1
=
descr
->
items
[
index
].
data
;
cis
.
itemID2
=
-
1
;
cis
.
itemData2
=
(
ULONG_PTR
)
str
;
cis
.
dwLocaleId
=
descr
->
locale
;
res
=
SendMessageW
(
descr
->
owner
,
WM_COMPAREITEM
,
id
,
(
LPARAM
)
&
cis
);
}
if
(
!
res
)
return
index
;
if
(
res
<
0
)
max
=
index
;
if
(
res
>
0
)
max
=
index
;
else
min
=
index
+
1
;
}
return
exact
?
-
1
:
max
;
...
...
dlls/user32/tests/msg.c
View file @
18420c24
...
...
@@ -2276,9 +2276,7 @@ static void add_message_(int line, const struct recvd_message *msg)
ok
(
msg
->
wParam
==
cis
->
CtlID
,
"expected %#x, got %#lx
\n
"
,
cis
->
CtlID
,
msg
->
wParam
);
ok
(
cis
->
hwndItem
==
ctrl
,
"expected %p, got %p
\n
"
,
ctrl
,
cis
->
hwndItem
);
todo_wine
ok
((
int
)
cis
->
itemID1
>=
0
,
"expected >= 0, got %d
\n
"
,
cis
->
itemID1
);
todo_wine
ok
((
int
)
cis
->
itemID2
==
-
1
,
"expected -1, got %d
\n
"
,
cis
->
itemID2
);
sprintf
(
seq
->
output
,
"%s: %p WM_COMPAREITEM: CtlType %#x, CtlID %#x, itemID1 %#x, itemData1 %#lx, itemID2 %#x, itemData2 %#lx"
,
...
...
@@ -14385,10 +14383,8 @@ static void test_listbox_messages(void)
ret
=
SendMessageA
(
listbox
,
LB_ADDSTRING
,
0
,
(
LPARAM
)
"item 0"
);
ok
(
ret
==
0
,
"expected 0, got %ld
\n
"
,
ret
);
ret
=
SendMessageA
(
listbox
,
LB_ADDSTRING
,
0
,
(
LPARAM
)
"item 1"
);
todo_wine
ok
(
ret
==
1
,
"expected 1, got %ld
\n
"
,
ret
);
ret
=
SendMessageA
(
listbox
,
LB_ADDSTRING
,
0
,
(
LPARAM
)
"item 2"
);
todo_wine
ok
(
ret
==
2
,
"expected 2, got %ld
\n
"
,
ret
);
ok_sequence
(
wm_lb_addstring_sort_ownerdraw
,
"LB_ADDSTRING"
,
TRUE
);
...
...
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