summaryrefslogtreecommitdiff
path: root/atspi/atspi-collection.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-40/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I ran this on each directory with C files: clang-format -i *.[ch] "-i" is the in-place option. I also adjusted the order of #includes for some files which failed to build after that: Clang-format reorders blocks of #include directives alphabetically, but they can be grouped and separated by blank lines. If there is a blank line between blocks, like #include "zork.h" #include "bar.h" #include "foo.h" then it will not put zork.h after the other two. The last two header files will be sorted alphabetically. We can adjust the formatting of chunks of code by hand with comments like these: /* clang-format off */ this code { is, formatted, by, hand; } /* clang-format on */ See https://clang.llvm.org/docs/ClangFormat.html for the general manual and https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the style options and the comments described above.
* Docs: Move to gi-docgenThomas Booker2022-09-281-0/+11
|
* Rename _atspi_dbus_return_accessible_from_iter to _atspi_dbus_consume_accessibleFederico Mena Quintero2022-07-121-1/+1
| | | | Makes it clear that the iter is being advanced, hopefully?
* Relicense as LGPL 2.1Mike Gorse2019-08-281-4/+4
| | | | Fixes https://gitlab.gnome.org/GNOME/at-spi2-core/issues/2
* Fix outdated FSF addressMike Gorse2019-08-271-2/+2
|
* atspi: Update error logsTapasweni Pathak2018-10-041-2/+2
| | | | Error logs has different naming convention in atspi/ files.
* Fix some warnings and documentation issuesMike Gorse2013-10-101-0/+1
|
* Fix some annotations compilation warningsJavier Hernández2012-09-041-24/+5
|
* Code clean-upsMike Gorse2012-07-181-4/+1
| | | | | There isn't really any point in checking for GLib functions returning NULL due to lack of memory, since they just abort instead.
* For atspi_collection_get_matches_to, rename restrict to limit_scopeMike Gorse2012-02-031-4/+4
| | | | | | | Restrict can be a keyword. Don't use it as a variable name. Also update D-Bus introspection. https://bugzilla.gnome.org/show_bug.cgi?id=669344
* Add some defensive checks to prevent problems with defunct objectsMike Gorse2011-09-151-0/+2
|
* Fixing traverse recurse/restrict documentationsAline Bessa2011-08-231-7/+9
|
* Improving atspi-collection documentation.Aline Bessa2011-08-231-16/+33
|
* Starting to improve atspi-collectionAline Bessa2011-08-231-11/+12
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Fix most compiler warnings and various miscellaneous problemsMike Gorse2011-01-281-0/+1
|
* More error handling fixesMike Gorse2011-01-241-3/+3
| | | | | | Set the GError in some more cases where we were previously printing warnings. Also added an error parameter to event register/deregister functions, as it makes calls over the wire.
* Return exceptions for errors rather than printing warningsMike Gorse2011-01-041-1/+1
|
* Really commit fixes; make unit tests passMike Gorse2010-11-281-13/+10
|
* Add first pass at MatchRule/Collection implementationMike Gorse2010-11-231-0/+296