summaryrefslogtreecommitdiff
path: root/src/xkbcomp/vmod.h
diff options
context:
space:
mode:
authorRan Benita <ran234@gmail.com>2012-07-24 13:15:40 +0300
committerRan Benita <ran234@gmail.com>2012-07-27 00:04:45 +0300
commit6cb982000092fb0d30603016be5f8b82579da6bd (patch)
tree5f018c6be1d438616e572d77c83455d136fc576a /src/xkbcomp/vmod.h
parent74be17627e43811437147c84d43d75bcac822a7b (diff)
downloadxorg-lib-libxkbcommon-6cb982000092fb0d30603016be5f8b82579da6bd.tar.gz
Use xkb_mod_mask_t and xkb_mask_index_t throughout
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/xkbcomp/vmod.h')
-rw-r--r--src/xkbcomp/vmod.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xkbcomp/vmod.h b/src/xkbcomp/vmod.h
index f08e037..30df71a 100644
--- a/src/xkbcomp/vmod.h
+++ b/src/xkbcomp/vmod.h
@@ -31,9 +31,9 @@
#include "expr.h"
typedef struct _VModInfo {
- unsigned defined;
- unsigned available;
- unsigned newlyDefined;
+ xkb_mod_mask_t defined;
+ xkb_mod_mask_t available;
+ xkb_mod_mask_t newlyDefined;
int errorCount;
} VModInfo;