summaryrefslogtreecommitdiff
path: root/atspi/atspi-enum-types.h.template
Commit message (Collapse)AuthorAgeFilesLines
* Make the build reproducibleChris Lamb2017-12-041-1/+1
| | | | | | atspi-enum-types.h.template should use @basename@ rather than @filename@ https://bugzilla.gnome.org/show_bug.cgi?id=791167
* Enum clean-upsenum-typesMike Gorse2011-05-291-0/+27
| | | | | | | | | | Generate enum types where appropriate. Fix prototypes where a method took a "gint" that was really a bitflag. Remove tables of state and role names, since these are now redundant with data from the generated enums and would need to be maintained in parallel. These changes were originally in master but have been backed out since they break compatibility with pygobject 2.26.0, which some users are still using.
* Revert "Clean up enums"Mike Gorse2011-05-291-27/+0
| | | | | | | | | | | | | | 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.
* Clean up enumsMike Gorse2011-05-241-0/+27
Use glib-enums to generate GTypes for enums, and modify enum definitions so that they will be marked as bitflags where appropriate. This helps with introspection and allows functions that take flags to be prototyped as such rather than being marked as taking a gint.