diff options
author | Evan Nemerson <evan@coeus-group.com> | 2012-10-23 18:21:41 -0700 |
---|---|---|
committer | Evan Nemerson <evan@coeus-group.com> | 2012-12-01 22:49:04 -0800 |
commit | acd2335095bf859d35332db6fdc9c54b53773918 (patch) | |
tree | 2553717ef79e0675b400f711dd87e29d6bd80c35 /atk/atkdocument.c | |
parent | ea8b387dc0649313059c04ab32c3a35109555ed0 (diff) | |
download | atk-acd2335095bf859d35332db6fdc9c54b53773918.tar.gz |
introspection: merge fixes from Vala bindings
https://bugzilla.gnome.org/show_bug.cgi?id=686746
Diffstat (limited to 'atk/atkdocument.c')
-rwxr-xr-x | atk/atkdocument.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/atk/atkdocument.c b/atk/atkdocument.c index 01d0111..a60d32f 100755 --- a/atk/atkdocument.c +++ b/atk/atkdocument.c @@ -154,6 +154,7 @@ atk_document_get_document (AtkDocument *document) * Returns: a UTF-8 string indicating the POSIX-style LC_MESSAGES * locale of the document content as a whole, or NULL if * the document content does not specify a locale. + * Virtual: get_document_locale **/ const gchar * atk_document_get_locale (AtkDocument *document) @@ -187,6 +188,7 @@ atk_document_get_locale (AtkDocument *document) * Returns: (transfer none): An AtkAttributeSet containing the explicitly * set name-value-pair attributes associated with this document * as a whole. + * Virtual: get_document_attributes **/ AtkAttributeSet * atk_document_get_attributes (AtkDocument *document) @@ -218,6 +220,7 @@ atk_document_get_attributes (AtkDocument *document) * Returns: a string value associated with the named attribute for this * document, or NULL if a value for #attribute_name has not been specified * for this document. + * Virtual: get_document_attribute_value */ const gchar * atk_document_get_attribute_value (AtkDocument *document, @@ -251,6 +254,7 @@ atk_document_get_attribute_value (AtkDocument *document, * Returns: TRUE if #value is successfully associated with #attribute_name * for this document, FALSE otherwise (e.g. if the document does not * allow the attribute to be modified). + * Virtual: set_document_attribute */ gboolean atk_document_set_attribute_value (AtkDocument *document, |