projects
/
platform
/
upstream
/
at-spi2-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3085443
)
Avoid setting enum values to 0x80000000
author
Mike Gorse
<mgorse@novell.com>
Thu, 3 Mar 2011 16:41:48 +0000
(10:41 -0600)
committer
Mike Gorse
<mgorse@novell.com>
Thu, 3 Mar 2011 16:45:08 +0000
(10:45 -0600)
Change ATSPI_CACHE_ALL and ATSPI_CACHE_UNDEFINED, since ATSPI_CACHE_UNDEFINED
was set to 0x80000000 and throwing an exception with pygobject.
atspi/atspi-constants.h
patch
|
blob
|
history
diff --git
a/atspi/atspi-constants.h
b/atspi/atspi-constants.h
index 90d6ca6b11ba3d386ea458c76e9009b89892c3e3..7c1a1f86a134bd76a18990642b9e6c632abc98cd 100644
(file)
--- a/
atspi/atspi-constants.h
+++ b/
atspi/atspi-constants.h
@@
-769,8
+769,8
@@
typedef enum
ATSPI_CACHE_STATES = 0x0010,
ATSPI_CACHE_ROLE = 0x0020,
ATSPI_CACHE_INTERFACES = 0x0040,
- ATSPI_CACHE_ALL = 0x
7
fffffff,
- ATSPI_CACHE_UNDEFINED = 0x
8
0000000
+ ATSPI_CACHE_ALL = 0x
3
fffffff,
+ ATSPI_CACHE_UNDEFINED = 0x
4
0000000
} AtspiCache;
#ifdef __cplusplus