summaryrefslogtreecommitdiff
path: root/atspi/atspi-table-cell.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-36/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* 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
|
* Update libatspi documentation to indicate that extents are only meaningfulMike Gorse2019-03-031-0/+6
| | | | | | when an object has both STATE_VISIBLE and STATE_SHOWING. Corresponds to merge request GNOME/at-spi2-core!8
* Fix atspi_table_cell_get_(row|column)_headersMike Gorse2019-02-271-1/+1
| | | | | The sanity check was looking for the wrong signature, causing the functions to fail.
* atspi_table_cell_get_position: don't crash on errorMike Gorse2017-03-271-1/+4
|
* Table cell API fixesMike Gorse2017-03-131-22/+1
| | | | | | | | | We had a non-working get_column_index function and no get_row_index function. GetPosition is the only function implemented on at-spi2-atk. Removed the non-working functions, for consistency, and add a missing prototype for atspi_table_cell_get_position. https://bugzilla.gnome.org/show_bug.cgi?id=779835
* Fix atspi_table_cell_get_positionMike Gorse2015-06-171-3/+3
|
* Fix atspi_table_cell_get_column_span prototypeMike Gorse2014-12-151-1/+1
|
* Fix a silly documentation issueMike Gorse2014-08-161-1/+1
|
* Fix various memory leaks when checking D-Bus signaturesMike Gorse2014-07-191-1/+7
|
* Add AtspitableCell, tracking the new atk interfaceMike Gorse2014-02-181-0/+300