summaryrefslogtreecommitdiff
path: root/atspi/atspi-editabletext.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-13/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+12
|
* Clarify atspi_editable_text_insert_text documentationMike Gorse2019-08-281-2/+2
| | | | | | | Clarify that the length parameter expects a count of bytes. This matches the corresponding atk documentation. Fixes https://gitlab.gnome.org/GNOME/at-spi2-core/issues/9
* 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
|
* Removing -1 length documentationAline Bessa2011-08-231-2/+1
|
* Adding more documentation to length parameter at atspi_editable_text_insert_textAline Bessa2011-08-231-1/+2
|
* Improving atspi-editabletext.c documentationAline Bessa2011-08-231-26/+28
|
* Avoid returning uninitialized data for some IPC errorsMike Gorse2011-02-151-1/+1
|
* Fix most compiler warnings and various miscellaneous problemsMike Gorse2011-01-281-1/+1
|
* Fix atspi_editable_text_set_text_contentsMike Gorse2011-01-241-1/+1
|
* Add Action, Document, EditableText, Image, and Value interfacesMike Gorse2010-11-191-0/+256