summaryrefslogtreecommitdiff
path: root/atspi/atspi-types.h
diff options
context:
space:
mode:
authorMike Gorse <mgorse@novell.com>2011-05-29 17:27:02 -0500
committerMike Gorse <mgorse@novell.com>2011-05-29 17:27:02 -0500
commite5198adbcc277c6dc22ecf022b4b7504292b7ce0 (patch)
tree6725fe06d190607cdde997977ccb9a37e4a4b267 /atspi/atspi-types.h
parent0c418b1248fa9fc6d7f32c17519a58bb4c4d75af (diff)
downloadat-spi2-core-e5198adbcc277c6dc22ecf022b4b7504292b7ce0.tar.gz
Revert "Clean up enums"
This reverts commit a12d7458110c57e183916255d701b1e0d7c070e1. Conflicts: atspi/atspi-constants.h Reverting these enum clean-ups for now, since they require pygobject 2.28.0 for pyatspi, at least one user is pulling git while using pygobject 2.26.0, upgrading pygobject is likely to be a complicated process that may break things, and these changes are only code clean-ups that will not really benefit users. Will reinstate in a separate branch and merge some time in the future.
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 4e8dc1ac..e56f93f0 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 << 0,
- ATSPI_KEYLISTENER_CANCONSUME = 1 << 1,
- ATSPI_KEYLISTENER_ALL_WINDOWS = 1 << 2
+ ATSPI_KEYLISTENER_SYNCHRONOUS = 1,
+ ATSPI_KEYLISTENER_CANCONSUME = 2,
+ ATSPI_KEYLISTENER_ALL_WINDOWS = 4
} AtspiKeyListenerSyncType;
#endif /* _ATSPI_TYPES_H_ */