diff options
author | Corentin Noël <corentin@elementary.io> | 2018-03-29 21:52:30 +0100 |
---|---|---|
committer | Corentin Noël <corentin@elementary.io> | 2018-06-03 16:10:38 +0100 |
commit | e975518ff91080f214cbb7f44a2f85af6b8aa5f3 (patch) | |
tree | fbebe2b5a29f36a38b653708ef3e209e2cec688a /atk/atkdocument.c | |
parent | 77fd1ab5ee4e93e796eae9fa951a6c5b3b33a5fa (diff) | |
download | atk-e975518ff91080f214cbb7f44a2f85af6b8aa5f3.tar.gz |
gobject-introspection: fix virtual annotations and missing type descriptionswip/tintou/gir-virtual
Diffstat (limited to 'atk/atkdocument.c')
-rw-r--r-- | atk/atkdocument.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/atk/atkdocument.c b/atk/atkdocument.c index 4e7245a..ff08ca8 100644 --- a/atk/atkdocument.c +++ b/atk/atkdocument.c @@ -162,7 +162,7 @@ atk_document_base_init (AtkDocumentIface *class) } /** - * atk_document_get_document_type: + * atk_document_get_document_type: (virtual get_document_type) * @document: a #GObject instance that implements AtkDocumentIface * * Gets a string indicating the document type. @@ -192,7 +192,7 @@ atk_document_get_document_type (AtkDocument *document) } /** - * atk_document_get_document: + * atk_document_get_document: (virtual get_document) * @document: a #GObject instance that implements AtkDocumentIface * * Gets a %gpointer that points to an instance of the DOM. It is @@ -225,7 +225,7 @@ atk_document_get_document (AtkDocument *document) } /** - * atk_document_get_locale: + * atk_document_get_locale: (virtual get_document_locale) * @document: a #GObject instance that implements AtkDocumentIface * * Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale @@ -261,7 +261,7 @@ atk_document_get_locale (AtkDocument *document) /** - * atk_document_get_attributes: + * atk_document_get_attributes: (virtual get_document_attributes) * @document: a #GObject instance that implements AtkDocumentIface * * Gets an AtkAttributeSet which describes document-wide @@ -293,7 +293,7 @@ atk_document_get_attributes (AtkDocument *document) } /** - * atk_document_get_attribute_value: + * atk_document_get_attribute_value: (virtual get_document_attribute_value) * @document: a #GObject instance that implements AtkDocumentIface * @attribute_name: a character string representing the name of the attribute * whose value is being queried. @@ -325,7 +325,7 @@ atk_document_get_attribute_value (AtkDocument *document, } /** - * atk_document_set_attribute_value: + * atk_document_set_attribute_value: (virtual set_document_attribute) * @document: a #GObject instance that implements AtkDocumentIface * @attribute_name: a character string representing the name of the attribute * whose value is being set. |