summaryrefslogtreecommitdiff
path: root/atspi/atspi-application.h
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|
* Add missing atspi_application_get_type prototypeSamuel Thibault2019-08-011-0/+2
| | | | This is needed to be able to use macros such as ATSPI_APPLICATION().
* Fix a couple of introspection issuesRico Tzschichholz2017-07-031-0/+1
| | | | | | This mainly restores the gir entry for AtspiApplication. https://bugzilla.gnome.org/show_bug.cgi?id=784481
* Add G_BEGIN_DECLS and G_END_DECLS macros for prototypes to fix c++ linkageMike Gorse2012-05-211-0/+4
|
* Add startup_time parameter to atspi_set_timeoutMike Gorse2012-04-061-0/+2
| | | | | | | | | Add a parameter to allow timeouts not to be enforced until an application has been running for a given amount of time. Might help prevent timeout exceptions for applications that get bogged down performing tasks at initialization. See https://bugzilla.gnome.org/show_bug.cgi?id=672784
* Catch toolkit name/version and AT-SPI version per-applicationMike Gorse2011-05-251-0/+3
|
* Build fixes.Patrick Welche2011-05-141-1/+1
| | | | | | | | | | - atspi-application.h makes use of DBusConnection* . - -Werror-implicit-function-declaration doesn't contain an equal sign in my copy of gcc, and is gcc specific. - The default behaviour of AC_CHECK_LIB glib-2.0 is to add -lglib-2.0 to LIBS which can then cause the search for a dlopen function to fail because the flags to find libglib aren't included. Solution is to tell AC_CHECK_LIB to do nothing(!)
* Add atspi_accessible_set_cache_maskMike Gorse2011-01-311-0/+1
|
* Use peer-to-peer connections when availableMike Gorse2010-12-041-0/+1
|
* Box some types, add missing header file, and other fixesMike Gorse2010-11-071-1/+1
|
* Various bug fixesMike Gorse2010-10-271-0/+57