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
cc688148
Commit
cc688148
authored
May 27, 2009
by
André Hentschel
Committed by
Alexandre Julliard
May 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Fix Ctrl+Tab translation.
parent
7d47feae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
input.c
dlls/user32/tests/input.c
+1
-1
keyboard.c
dlls/winex11.drv/keyboard.c
+2
-1
No files found.
dlls/user32/tests/input.c
View file @
cc688148
...
...
@@ -1276,7 +1276,7 @@ static void test_ToUnicode(void)
state
[
VK_LCONTROL
]
|=
HIGHEST_BIT
;
ret
=
ToUnicode
(
VK_TAB
,
SC_TAB
,
state
,
wStr
,
2
,
0
);
todo_wine
ok
(
ret
==
0
,
"ToUnicode for CTRL + Tab didn't return 0 (was %i)
\n
"
,
ret
);
ok
(
ret
==
0
,
"ToUnicode for CTRL + Tab didn't return 0 (was %i)
\n
"
,
ret
);
ret
=
ToUnicode
(
VK_RETURN
,
SC_RETURN
,
state
,
wStr
,
2
,
0
);
ok
(
ret
==
1
,
"ToUnicode for CTRL + Return didn't return 1 (was %i)
\n
"
,
ret
);
...
...
dlls/winex11.drv/keyboard.c
View file @
cc688148
...
...
@@ -2679,7 +2679,8 @@ INT CDECL X11DRV_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState
if
(
e
.
state
&
ControlMask
)
{
if
(((
keysym
>=
33
)
&&
(
keysym
<
'A'
))
||
((
keysym
>
'Z'
)
&&
(
keysym
<
'a'
)))
((
keysym
>
'Z'
)
&&
(
keysym
<
'a'
))
||
(
keysym
==
XK_Tab
))
{
lpChar
[
0
]
=
0
;
ret
=
0
;
...
...
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