summaryrefslogtreecommitdiff
path: root/xkbcommon
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2012-10-22 21:46:43 +0200
committerRan Benita <ran234@gmail.com>2012-10-22 22:23:29 +0200
commit0c98237f0280e09f8aac5f691fc77dc1d4e95574 (patch)
tree4a7625652f1cdd1aeaf2a77ddc11fc9a0fb74bf3 /xkbcommon
parenta807494e470320cd1da3a7aaa7d60ebab0227c7a (diff)
Change update_mask arguments to read 'depressed' instead of 'base'
Just to be consistent, as we use 'depressed' everywhere else in the API. Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'xkbcommon')
-rw-r--r--xkbcommon/xkbcommon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xkbcommon/xkbcommon.h b/xkbcommon/xkbcommon.h
index e9b324f..f4c34fc 100644
--- a/xkbcommon/xkbcommon.h
+++ b/xkbcommon/xkbcommon.h
@@ -1175,10 +1175,10 @@ enum xkb_state_match {
*/
enum xkb_state_component
xkb_state_update_mask(struct xkb_state *state,
- xkb_mod_mask_t base_mods,
+ xkb_mod_mask_t depressed_mods,
xkb_mod_mask_t latched_mods,
xkb_mod_mask_t locked_mods,
- xkb_layout_index_t base_layout,
+ xkb_layout_index_t depressed_layout,
xkb_layout_index_t latched_layout,
xkb_layout_index_t locked_layout);