diff options
author | Ran Benita <ran234@gmail.com> | 2012-10-03 20:08:13 +0200 |
---|---|---|
committer | Ran Benita <ran234@gmail.com> | 2012-10-06 21:41:58 +0200 |
commit | fe1faa143e6a5d1dd423a33f7bc0aaf792b8fc40 (patch) | |
tree | aae817811aa189f3d4396bac75f0861e9eb3f074 /src/text.h | |
parent | 1c880887666f84e08ea1752bb8a5ab2a7bf1d8a0 (diff) |
Use our types instead of int/uint32_t in a few places
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to 'src/text.h')
-rw-r--r-- | src/text.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -63,7 +63,7 @@ const char * ModMaskText(xkb_mod_mask_t mask); const char * -ActionTypeText(unsigned type); +ActionTypeText(enum xkb_action_type type); const char * KeysymText(xkb_keysym_t sym); @@ -72,6 +72,6 @@ const char * KeyNameText(struct xkb_context *ctx, xkb_atom_t name); const char * -SIMatchText(unsigned type); +SIMatchText(enum xkb_match_operation type); #endif /* TEXT_H */ |