diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-03-09 19:09:25 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2012-03-09 19:30:31 +0000 |
commit | a0e756fd83e9e4910ed8981f2ed7b6b0b522a2dc (patch) | |
tree | e5c0583d35cc3f7c5029a6de76422de0162abd88 /src/xkbcomp/expr.h | |
parent | 0bb24c2d2322b2ccd79eddf90137d7feaf7f3a6f (diff) | |
download | libxkbcommon-a0e756fd83e9e4910ed8981f2ed7b6b0b522a2dc.tar.gz libxkbcommon-a0e756fd83e9e4910ed8981f2ed7b6b0b522a2dc.tar.bz2 libxkbcommon-a0e756fd83e9e4910ed8981f2ed7b6b0b522a2dc.zip |
Introduce xkb_atom_t type
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Diffstat (limited to 'src/xkbcomp/expr.h')
-rw-r--r-- | src/xkbcomp/expr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xkbcomp/expr.h b/src/xkbcomp/expr.h index 921516b..c990351 100644 --- a/src/xkbcomp/expr.h +++ b/src/xkbcomp/expr.h @@ -52,19 +52,19 @@ extern const char *exprOpText(unsigned /* type */ ); extern int LookupModMask(const void * /* priv */ , - uint32_t /* field */ , + xkb_atom_t /* field */ , unsigned /* type */ , ExprResult * /* val_rtrn */ ); extern int LookupVModMask(const void * /* priv */ , - uint32_t /* field */ , + xkb_atom_t /* field */ , unsigned /* type */ , ExprResult * /* val_rtrn */ ); extern int LookupModIndex(const void * /* priv */ , - uint32_t /* field */ , + xkb_atom_t /* field */ , unsigned /* type */ , ExprResult * /* val_rtrn */ ); |