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
994d7990
Commit
994d7990
authored
Apr 02, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Apr 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Fix XIM wchar encoding in xic_preedit_draw.
parent
1a0ba03c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
9 deletions
+15
-9
xim.c
dlls/winex11.drv/xim.c
+15
-9
No files found.
dlls/winex11.drv/xim.c
View file @
994d7990
...
...
@@ -182,24 +182,30 @@ static int xic_preedit_draw( XIC xic, XPointer user, XPointer arg )
if
(
!
(
text
=
params
->
text
))
X11DRV_ImmSetInternalString
(
params
->
chg_first
,
params
->
chg_length
,
NULL
,
0
);
else
if
(
!
text
->
encoding_is_wchar
)
else
{
size_t
text_len
;
WCHAR
*
output
;
char
*
str
;
int
len
;
if
(
!
text
->
encoding_is_wchar
)
str
=
text
->
string
.
multi_byte
;
else
if
((
len
=
wcstombs
(
NULL
,
text
->
string
.
wide_char
,
text
->
length
))
<
0
)
str
=
NULL
;
else
if
((
str
=
malloc
(
len
+
1
)))
{
wcstombs
(
str
,
text
->
string
.
wide_char
,
len
);
str
[
len
]
=
0
;
}
text_len
=
str
len
(
text
->
string
.
multi_byte
)
;
text_len
=
str
?
strlen
(
str
)
:
0
;
if
((
output
=
malloc
(
text_len
*
sizeof
(
WCHAR
)
)))
{
text_len
=
ntdll_umbstowcs
(
text
->
string
.
multi_byte
,
text_len
,
output
,
text_len
);
text_len
=
ntdll_umbstowcs
(
str
,
text_len
,
output
,
text_len
);
X11DRV_ImmSetInternalString
(
params
->
chg_first
,
params
->
chg_length
,
output
,
text_len
);
free
(
output
);
}
}
else
{
FIXME
(
"wchar PROBIBILY WRONG
\n
"
);
X11DRV_ImmSetInternalString
(
params
->
chg_first
,
params
->
chg_length
,
(
WCHAR
*
)
text
->
string
.
wide_char
,
text
->
length
);
if
(
str
!=
text
->
string
.
multi_byte
)
free
(
str
);
}
x11drv_client_call
(
client_ime_set_cursor_pos
,
params
->
caret
);
...
...
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