summaryrefslogtreecommitdiff
path: root/atspi/atspi-accessible-private.h
Commit message (Collapse)AuthorAgeFilesLines
* Guard against recursion in atspi_accessible_clear_cacheMike Gorse2023-05-101-0/+1
| | | | | | | | | Add a stamp to AtspiAccessiblePrivate for use when iterating through a tree, and don't touch accessibles that have already been touched. This should further protect against buggy or malicious applications causing infinite recursion. Fixes #113
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* 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
|
* Refactor the API for the screen reader to notify listeners of its statusMike Gorse2019-07-181-0/+1
| | | | | | | Remove atspi_text_notify_reading_position, and instead add a region_changed signal. Also make the dbus API more like the API used for other events. Per discussion at https://gitlab.gnome.org/GNOME/orca/issues/36
* Added atspi-accessible-private.hAlejandro PiƱeiro2014-02-041-0/+46
On commit 6395af932862454ed292d3623c18c59218ecbe7e atspi-accessible-private.h started to be used, but not included. https://bugzilla.gnome.org/show_bug.cgi?id=723601