summaryrefslogtreecommitdiff
path: root/atspi/atspi-selection.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+13
|
* 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
|
* Using value instead of memory address when calling _atspi_dbus_callJosé Millán Soto2012-01-051-3/+3
| | | | | | | The following functions are changed: atspi_selection_select_child, atspi_selection_deselect_child and atspi_selection_is_child_selected Fixes bug 667254
* Fixing grammar issueAline Bessa2011-08-231-1/+1
|
* Improving atspi-selection.c documentationAline Bessa2011-08-231-15/+17
|
* Fix atspi_selection_get_n_selected_childrenMike Gorse2011-02-151-1/+1
|
* Fix atspi_selection_get_selected_childMike Gorse2011-02-041-3/+5
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Add selection interfaceMike Gorse2010-11-191-0/+259