diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2017-03-10 23:29:11 +0100 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2017-03-13 21:24:52 +0100 |
commit | f78e673fb0285b4adb89d3afa9a73576a5387266 (patch) | |
tree | e216d97635a0f448e7cd84afc95e4f5d959ca441 /nx-X11/programs/Xserver/hw/nxagent/Keystroke.h | |
parent | c80605a19c0c92d9a0e91bfcc84657527dd8d5ac (diff) | |
download | nx-libs-f78e673fb0285b4adb89d3afa9a73576a5387266.tar.gz nx-libs-f78e673fb0285b4adb89d3afa9a73576a5387266.tar.bz2 nx-libs-f78e673fb0285b4adb89d3afa9a73576a5387266.zip |
Keystroke.c: Boolify read_binding_from_xmlnode
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Keystroke.h')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Keystroke.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h index 28374e807..3f1c5885d 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h +++ b/nx-X11/programs/Xserver/hw/nxagent/Keystroke.h @@ -75,7 +75,7 @@ enum nxagentSpecialKeystroke { struct nxagentSpecialKeystrokeMap { enum nxagentSpecialKeystroke stroke; unsigned int modifierMask; /* everything except alt/meta */ - int modifierAltMeta; /* modifier combination should include alt/meta */ + Bool modifierAltMeta; /* modifier combination should include alt/meta */ KeySym keysym; }; |