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
ee2608d5
Commit
ee2608d5
authored
Feb 03, 2004
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 03, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue WARN instead of FIXME when there are mismatches between hard
coded and real keyboard layouts.
parent
c9053d74
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
keyboard.c
dlls/x11drv/keyboard.c
+3
-9
No files found.
dlls/x11drv/keyboard.c
View file @
ee2608d5
...
...
@@ -1305,15 +1305,9 @@ X11DRV_KEYBOARD_DetectLayout (void)
}
}
/* we're done, report results if necessary */
if
(
!
ismatch
)
{
FIXME
(
"Your keyboard layout was not found!
\n
"
"Using closest match instead (%s) for scancode mapping.
\n
"
"Please define your layout in dlls/x11drv/keyboard.c and submit them
\n
"
"to us for inclusion into future Wine releases.
\n
"
"See the Wine User Guide, chapter
\"
Keyboard
\"
for more information.
\n
"
,
main_key_tab
[
kbd_layout
].
comment
);
}
if
(
!
ismatch
)
WARN
(
"Using closest match (%s) for scan/virtual codes mapping.
\n
"
,
main_key_tab
[
kbd_layout
].
comment
);
TRACE
(
"detected layout is
\"
%s
\"\n
"
,
main_key_tab
[
kbd_layout
].
comment
);
}
...
...
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