summaryrefslogtreecommitdiff
path: root/atspi/atspi-types.h
diff options
context:
space:
mode:
authorMike Gorse <mgorse@suse.com>2013-05-10 18:56:32 -0500
committerMike Gorse <mgorse@suse.com>2013-05-10 18:56:32 -0500
commite74c40ea4b7616930557ca2e9eda73f5b344a4b5 (patch)
tree85d65785426bede318aa66e7804f4a6fcb24d30d /atspi/atspi-types.h
parenta29788df335d9ffc2fd471463ba996ba1aca4665 (diff)
parent7afb51e5093fef46c699d92ee8eee94f5b6886fb (diff)
downloadat-spi2-core-e74c40ea4b7616930557ca2e9eda73f5b344a4b5.tar.gz
Merge branch 'enum-types'
Conflicts: atspi/Makefile.am atspi/atspi-accessible.c
Diffstat (limited to 'atspi/atspi-types.h')
-rw-r--r--atspi/atspi-types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/atspi/atspi-types.h b/atspi/atspi-types.h
index 99bb8f5c..0d2a6e2a 100644
--- a/atspi/atspi-types.h
+++ b/atspi/atspi-types.h
@@ -143,8 +143,8 @@ typedef struct _AtspiKeySet
**/
typedef enum {
ATSPI_KEYLISTENER_NOSYNC = 0,
- ATSPI_KEYLISTENER_SYNCHRONOUS = 1,
- ATSPI_KEYLISTENER_CANCONSUME = 2,
- ATSPI_KEYLISTENER_ALL_WINDOWS = 4
+ ATSPI_KEYLISTENER_SYNCHRONOUS = 1 << 0,
+ ATSPI_KEYLISTENER_CANCONSUME = 1 << 1,
+ ATSPI_KEYLISTENER_ALL_WINDOWS = 1 << 2
} AtspiKeyListenerSyncType;
#endif /* _ATSPI_TYPES_H_ */