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
563ed3ab
Commit
563ed3ab
authored
Dec 04, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Remove superfluous function pointer casts.
parent
022e3f53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
xim.c
dlls/winex11.drv/xim.c
+3
-3
No files found.
dlls/winex11.drv/xim.c
View file @
563ed3ab
...
...
@@ -478,7 +478,7 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
XVaNestedList
preedit
=
NULL
;
XVaNestedList
status
=
NULL
;
XIC
xic
;
XICCallback
destroy
=
{(
XPointer
)
data
,
(
XICProc
)
X11DRV_DestroyIC
};
XICCallback
destroy
=
{(
XPointer
)
data
,
X11DRV_DestroyIC
};
XICCallback
P_StateNotifyCB
,
P_StartCB
,
P_DoneCB
,
P_DrawCB
,
P_CaretCB
;
LANGID
langid
=
PRIMARYLANGID
(
LANGIDFROMLCID
(
GetThreadLocale
()));
Window
win
=
data
->
whole_window
;
...
...
@@ -507,8 +507,8 @@ XIC X11DRV_CreateIC(XIM xim, struct x11drv_win_data *data)
P_DoneCB
.
client_data
=
NULL
;
P_DrawCB
.
client_data
=
NULL
;
P_CaretCB
.
client_data
=
NULL
;
P_StateNotifyCB
.
callback
=
(
XICProc
)
XIMPreEditStateNotifyCallback
;
P_StartCB
.
callback
=
(
XICProc
)
XIMPreEditStartCallback
;
P_StateNotifyCB
.
callback
=
XIMPreEditStateNotifyCallback
;
P_StartCB
.
callback
=
XIMPreEditStartCallback
;
P_DoneCB
.
callback
=
(
XICProc
)
XIMPreEditDoneCallback
;
P_DrawCB
.
callback
=
(
XICProc
)
XIMPreEditDrawCallback
;
P_CaretCB
.
callback
=
(
XICProc
)
XIMPreEditCaretCallback
;
...
...
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