mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-21 20:26:45 +00:00
XKB: Remove support for setting combined keymaps
We don't do full keymaps anymore. Deal. Signed-off-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
133e0bd6f1
commit
1ad80678d8
9 changed files with 17 additions and 61 deletions
|
|
@ -61,7 +61,7 @@ extern int Win32System(const char *cmdline);
|
|||
/***====================================================================***/
|
||||
|
||||
static char *componentDirs[_XkbListNumComponents] = {
|
||||
"keymap", "keycodes", "types", "compat", "symbols", "geometry"
|
||||
"keycodes", "types", "compat", "symbols", "geometry"
|
||||
};
|
||||
|
||||
/***====================================================================***/
|
||||
|
|
@ -280,9 +280,7 @@ XkbDDXList(DeviceIntPtr dev,XkbSrvListInfoPtr list,ClientPtr client)
|
|||
{
|
||||
Status status;
|
||||
|
||||
status= XkbDDXListComponent(dev,_XkbListKeymaps,list,client);
|
||||
if (status==Success)
|
||||
status= XkbDDXListComponent(dev,_XkbListKeycodes,list,client);
|
||||
status= XkbDDXListComponent(dev,_XkbListKeycodes,list,client);
|
||||
if (status==Success)
|
||||
status= XkbDDXListComponent(dev,_XkbListTypes,list,client);
|
||||
if (status==Success)
|
||||
|
|
|
|||
Loading…
Reference in a new issue