summaryrefslogtreecommitdiff
path: root/atspi/atspi-image.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-16/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|
* 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
* Improving atspi-image.c documentationAline Bessa2011-08-231-7/+18
|
* Change a couple of enums and types from 16-bit to 32-bit to match specMike Gorse2011-02-171-1/+1
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Fix crash in atspi_image_get_image_descriptionDan Winship2011-01-211-1/+1
| | | | | | | | If the remote object didn't define this property then the function would return stack garbage, which the caller would eventually try to free. https://bugzilla.gnome.org/show_bug.cgi?id=640198
* Fix image locale and descriptionMike Gorse2010-12-291-2/+2
|
* Add Action, Document, EditableText, Image, and Value interfacesMike Gorse2010-11-191-0/+165