summaryrefslogtreecommitdiff
path: root/atk/atkdocument.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2011-06-13 11:48:45 +0100
committerJavier Jardón <jjardon@gnome.org>2011-06-13 11:48:45 +0100
commit2b6504ef3a8eb22b4d00c933e041fe2e1423142a (patch)
tree1a06f87df46e75384ad3f72b255a761a903fb9b7 /atk/atkdocument.c
parent28ca51e39e84ee280e4352e752593d77810b1ba8 (diff)
downloadatk-2b6504ef3a8eb22b4d00c933e041fe2e1423142a.tar.gz
atk: Use const instead G_CONST_RETURN
https://bugzilla.gnome.org/show_bug.cgi?id=652205
Diffstat (limited to 'atk/atkdocument.c')
-rwxr-xr-xatk/atkdocument.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atk/atkdocument.c b/atk/atkdocument.c
index 7072713..01d0111 100755
--- a/atk/atkdocument.c
+++ b/atk/atkdocument.c
@@ -93,7 +93,7 @@ atk_document_base_init (AtkDocumentIface *class)
*
* Returns: a string indicating the document type
**/
-G_CONST_RETURN gchar*
+const gchar*
atk_document_get_document_type (AtkDocument *document)
{
AtkDocumentIface *iface;
@@ -155,7 +155,7 @@ atk_document_get_document (AtkDocument *document)
* locale of the document content as a whole, or NULL if
* the document content does not specify a locale.
**/
-G_CONST_RETURN gchar *
+const gchar *
atk_document_get_locale (AtkDocument *document)
{
AtkDocumentIface *iface;
@@ -219,7 +219,7 @@ atk_document_get_attributes (AtkDocument *document)
* document, or NULL if a value for #attribute_name has not been specified
* for this document.
*/
-G_CONST_RETURN gchar *
+const gchar *
atk_document_get_attribute_value (AtkDocument *document,
const gchar *attribute_name)
{