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
002860d6
Commit
002860d6
authored
Feb 23, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 28, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched32/tests: EM_GETSELTEXT's wparam is not used and should be 0.
parent
aa21d1ac
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
editor.c
dlls/riched32/tests/editor.c
+2
-2
No files found.
dlls/riched32/tests/editor.c
View file @
002860d6
...
...
@@ -1361,7 +1361,7 @@ static void test_EM_EXSETSEL(void)
cr
.
cpMin
=
4
;
cr
.
cpMax
=
8
;
result
=
SendMessageA
(
hwndRichEdit
,
EM_EXSETSEL
,
0
,
(
LPARAM
)
&
cr
);
todo_wine
ok
(
result
==
7
,
"EM_EXSETSEL return %Id expected 7
\n
"
,
result
);
result
=
SendMessageA
(
hwndRichEdit
,
EM_GETSELTEXT
,
sizeof
(
bufA
)
,
(
LPARAM
)
bufA
);
result
=
SendMessageA
(
hwndRichEdit
,
EM_GETSELTEXT
,
0
,
(
LPARAM
)
bufA
);
ok
(
!
strcmp
(
bufA
,
"ef
\x8e\xf0
"
),
"EM_GETSELTEXT return incorrect string
\n
"
);
SendMessageA
(
hwndRichEdit
,
EM_EXGETSEL
,
0
,
(
LPARAM
)
&
cr
);
ok
(
cr
.
cpMin
==
4
,
"Selection start incorrectly: %ld expected 4
\n
"
,
cr
.
cpMin
);
...
...
@@ -1420,7 +1420,7 @@ static void test_EM_SETSEL(void)
/* 012345 6 7 8901 */
result
=
SendMessageA
(
hwndRichEdit
,
EM_SETSEL
,
4
,
8
);
todo_wine
ok
(
result
==
7
,
"EM_SETSEL return %Id expected 7
\n
"
,
result
);
result
=
SendMessageA
(
hwndRichEdit
,
EM_GETSELTEXT
,
sizeof
(
buffA
)
,
(
LPARAM
)
buffA
);
result
=
SendMessageA
(
hwndRichEdit
,
EM_GETSELTEXT
,
0
,
(
LPARAM
)
buffA
);
ok
(
!
strcmp
(
buffA
,
"ef
\x8e\xf0
"
),
"EM_GETSELTEXT return incorrect string
\n
"
);
result
=
SendMessageA
(
hwndRichEdit
,
EM_GETSEL
,
(
WPARAM
)
&
sel_start
,
(
LPARAM
)
&
sel_end
);
ok
(
sel_start
==
4
,
"Selection start incorrectly: %d expected 4
\n
"
,
sel_start
);
...
...
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