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
2f3a02ea
Commit
2f3a02ea
authored
Jun 21, 2007
by
Nigel Liang
Committed by
Alexandre Julliard
Jun 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Remove call to XCreateFontSet.
parent
893eec9f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
xim.c
dlls/winex11.drv/xim.c
+0
-28
No files found.
dlls/winex11.drv/xim.c
View file @
2f3a02ea
...
...
@@ -456,9 +456,6 @@ err:
XIC
X11DRV_CreateIC
(
XIM
xim
,
Display
*
display
,
Window
win
)
{
XFontSet
fontSet
=
NULL
;
char
**
list
;
int
count
;
XPoint
spot
=
{
0
};
XVaNestedList
preedit
=
NULL
;
XVaNestedList
status
=
NULL
;
...
...
@@ -485,29 +482,6 @@ XIC X11DRV_CreateIC(XIM xim, Display *display, Window win)
return
xic
;
}
if
(((
ximStyle
&
(
XIMPreeditNothing
|
XIMPreeditNone
))
==
0
)
||
((
ximStyle
&
(
XIMStatusNothing
|
XIMStatusNone
))
==
0
))
{
fontSet
=
XCreateFontSet
(
display
,
"*"
,
/*FIXME*/
&
list
,
&
count
,
NULL
);
TRACE
(
"ximFontSet = %p
\n
"
,
fontSet
);
TRACE
(
"list = %p, count = %d
\n
"
,
list
,
count
);
if
(
list
!=
NULL
)
{
int
i
;
for
(
i
=
0
;
i
<
count
;
++
i
)
{
TRACE
(
"list[%d] = %s
\n
"
,
i
,
list
[
i
]);
}
XFreeStringList
(
list
);
}
}
/* create callbacks */
P_StartCB
.
client_data
=
NULL
;
P_StartCB
.
callback
=
(
XIMProc
)
XIMPreEditStartCallback
;
...
...
@@ -521,7 +495,6 @@ XIC X11DRV_CreateIC(XIM xim, Display *display, Window win)
if
((
ximStyle
&
(
XIMPreeditNothing
|
XIMPreeditNone
))
==
0
)
{
preedit
=
XVaCreateNestedList
(
0
,
XNFontSet
,
fontSet
,
XNSpotLocation
,
&
spot
,
XNPreeditStartCallback
,
&
P_StartCB
,
XNPreeditDoneCallback
,
&
P_DoneCB
,
...
...
@@ -545,7 +518,6 @@ XIC X11DRV_CreateIC(XIM xim, Display *display, Window win)
if
((
ximStyle
&
(
XIMStatusNothing
|
XIMStatusNone
))
==
0
)
{
status
=
XVaCreateNestedList
(
0
,
XNFontSet
,
fontSet
,
NULL
);
TRACE
(
"status = %p
\n
"
,
status
);
}
...
...
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