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
067b81fc
Commit
067b81fc
authored
Mar 21, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32/tests: Update ImmGetProperty expectations for Korean locale.
Wine-Bug:
https://bugs.winehq.org//show_bug.cgi?id=54711
parent
9ab5fb59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
imm32.c
dlls/imm32/tests/imm32.c
+3
-2
No files found.
dlls/imm32/tests/imm32.c
View file @
067b81fc
...
...
@@ -3062,7 +3062,7 @@ static void test_ImmGetProperty(void)
};
static
const
IMEINFO
expect_ime_info_0411
=
/* MS Japanese IME */
{
.
fdwProperty
=
IME_PROP_C
OMPLETE_ON_UNSELECT
|
IME_PROP_C
ANDLIST_START_FROM_1
|
IME_PROP_UNICODE
|
IME_PROP_AT_CARET
|
0xa
,
.
fdwProperty
=
IME_PROP_CANDLIST_START_FROM_1
|
IME_PROP_UNICODE
|
IME_PROP_AT_CARET
|
0xa
,
.
fdwConversionCaps
=
IME_CMODE_NATIVE
|
IME_CMODE_FULLSHAPE
|
IME_CMODE_KATAKANA
,
.
fdwSentenceCaps
=
IME_SMODE_PLAURALCLAUSE
|
IME_SMODE_CONVERSATION
,
.
fdwSCSCaps
=
SCS_CAP_COMPSTR
|
SCS_CAP_SETRECONVERTSTRING
|
SCS_CAP_MAKEREAD
,
...
...
@@ -3101,7 +3101,8 @@ static void test_ImmGetProperty(void)
else
if
(
hkl
==
(
HKL
)
0x08040804
)
expect
=
&
expect_ime_info_0804
;
else
expect
=
&
expect_ime_info
;
ok_ret
(
expect
->
fdwProperty
,
ImmGetProperty
(
hkl
,
IGP_PROPERTY
)
);
/* IME_PROP_COMPLETE_ON_UNSELECT seems to be somtimes set on CJK locales IMEs, sometimes not */
ok_ret
(
expect
->
fdwProperty
,
ImmGetProperty
(
hkl
,
IGP_PROPERTY
)
&
~
IME_PROP_COMPLETE_ON_UNSELECT
);
todo_wine
ok_ret
(
expect
->
fdwConversionCaps
,
ImmGetProperty
(
hkl
,
IGP_CONVERSION
)
);
todo_wine
...
...
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