summaryrefslogtreecommitdiff
path: root/atspi/atspi-hyperlink.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+15
|
* 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 default values for atspi_hyperlink_get_index_range variablesPatryk Kaczmarek2015-10-121-1/+2
| | | | | | | If there are no default values, after unsuccessful dbus call, some random values of start_offset and end_offset are set. https://bugzilla.gnome.org/show_bug.cgi?id=755727
* Improving atspi-hyperlink documentationAline Bessa2011-10-311-16/+18
|
* Clean up names of private functionsMike Gorse2011-07-261-3/+1
| | | | | If a function is non-static and not intended to be public, then precede its name with an _.
* Remove some redundant out-of-memory checksMike Gorse2011-05-051-3/+2
| | | | | | | If malloc returns NULL, then g_malloc will call g_error and thus abort, so it is redundant to check the return value of g_new0 and the like, since glib will already have aborted the program rather than returning a NULL value. "Cleaning up" the code by removing some of these checks.
* Avoid returning uninitialized data for some IPC errorsMike Gorse2011-02-151-2/+2
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Fix a couple of crashesMike Gorse2010-12-311-1/+4
|
* Initial pass at adding i18n and proper object disposalMike Gorse2010-12-291-11/+0
| | | | | | | 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.
* Fix atspi_hyperlink_get_(start|end)_indexMike Gorse2010-12-061-2/+4
|
* Add Hypertext and Hyperlink and some refactoring to support themMike Gorse2010-11-201-0/+221
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.