diff options
author | Jamey Sharp <jamey@minilop.net> | 2006-11-11 16:12:54 -0800 |
---|---|---|
committer | Jamey Sharp <jamey@minilop.net> | 2006-11-11 16:14:45 -0800 |
commit | 36134f48236f50aeee386b36be7e82c809688bc8 (patch) | |
tree | 75808b08805bf12aa5f579d30f5216f66b6842bb | |
parent | 38ded0002498cfe125e66dbc513071448f7480f5 (diff) |
Bug #8973: In UngrabKey, the 'key' field is of type KEYCODE, not the more general CARD8.
Thanks to Vincent Torri for pointing out the error.
-rw-r--r-- | src/xproto.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xproto.xml b/src/xproto.xml index 514659d..8254d11 100644 --- a/src/xproto.xml +++ b/src/xproto.xml @@ -1086,7 +1086,7 @@ authorization from the authors. </request> <request name="UngrabKey" opcode="34"> - <field type="CARD8" name="key" /> + <field type="KEYCODE" name="key" /> <field type="WINDOW" name="grab_window" /> <field type="CARD16" name="modifiers" /> </request> |