summaryrefslogtreecommitdiff
path: root/atspi/atspi-application.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-17/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+10
|
* 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
|
* atspi_application_dispose: clear root accessible's ref to the appMike Gorse2017-01-241-0/+1
| | | | Hoping that this might fix https://bugzilla.gnome.org/show_bug.cgi?id=767074
* Fix some ref count issuesMike Gorse2012-12-271-0/+8
| | | | | | | Add refs in some places where they were previously not present, and be more thorough about removing refs when disposing. This should fix some leaks, though it is likely that many still remain. Also add a test program that can be used to test for some leaks.
* Don't check for NULL when calling _atspi_application_newMike Gorse2012-09-171-5/+2
| | | | | g_object_new will error out rather than return NULL when out of memory, so no need to check its return value.
* Catch toolkit name/version and AT-SPI version per-applicationMike Gorse2011-05-251-2/+4
|
* Fix some possible crashes and a memory leakMike Gorse2011-02-021-0/+3
|
* Initial pass at adding i18n and proper object disposalMike Gorse2010-12-291-2/+32
| | | | | | | Objects are now "disposed" when RemoveAccessible is received or the application goes away. This allows the objects to be dereferenced and properly cleaned up. Also fix some related bugs and add i18n. Some reference leaks remain, however.
* Box some types, add missing header file, and other fixesMike Gorse2010-11-071-1/+3
|
* Various bug fixesMike Gorse2010-10-271-0/+57