summaryrefslogtreecommitdiff
path: root/atspi/atspi-table.c
Commit message (Collapse)AuthorAgeFilesLines
* typos--Harald Sitter2023-03-061-1/+1
|
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-93/+98
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+16
|
* 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_get_row_column_extents_at_indexMike Gorse2012-02-231-1/+4
| | | | | | atspi_table_get_row_column_extents_at_index was trying to read parameters from the dbus message in the wrong order and also not returning the row.
* Fixing a typoAline Bessa2011-08-231-1/+1
|
* Improving atspi-table.c documentationAline Bessa2011-08-231-79/+92
|
* Annotate atspi_table_get_row_column_extents_at_index out parametersMike Gorse2011-05-171-5/+5
|
* Fix atspi_table_get_column_headerMike Gorse2011-03-151-1/+1
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Fix most compiler warnings and various miscellaneous problemsMike Gorse2011-01-281-3/+1
|
* Table fixesMike Gorse2010-12-211-2/+2
|
* Fix a couple of typos with table functionsMike Gorse2010-12-201-2/+2
|
* State and action fixesMike Gorse2010-11-241-1/+1
|
* Add Hypertext and Hyperlink and some refactoring to support themMike Gorse2010-11-201-6/+6
| | | | | | AtspiAccessible is now derived from a base class called AtspiObject which defines the object's application and object path, since this is common with AtspiHyperlink.
* Add table interfaceMike Gorse2010-11-191-0/+730