summaryrefslogtreecommitdiff
path: root/atk/atkimage.h
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/atkimage.h
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/atkimage.h')
-rwxr-xr-xatk/atkimage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/atk/atkimage.h b/atk/atkimage.h
index dd45916..1091d7c 100755
--- a/atk/atkimage.h
+++ b/atk/atkimage.h
@@ -53,13 +53,13 @@ struct _AtkImageIface
gint *x,
gint *y,
AtkCoordType coord_type);
- G_CONST_RETURN gchar* ( *get_image_description) (AtkImage *image);
+ const gchar* ( *get_image_description) (AtkImage *image);
void ( *get_image_size) (AtkImage *image,
gint *width,
gint *height);
gboolean ( *set_image_description) (AtkImage *image,
const gchar *description);
- G_CONST_RETURN gchar* ( *get_image_locale) (AtkImage *image);
+ const gchar* ( *get_image_locale) (AtkImage *image);
AtkFunction pad1;
@@ -67,7 +67,7 @@ struct _AtkImageIface
GType atk_image_get_type (void);
-G_CONST_RETURN gchar* atk_image_get_image_description (AtkImage *image);
+const gchar* atk_image_get_image_description (AtkImage *image);
void atk_image_get_image_size (AtkImage *image,
gint *width,
@@ -80,7 +80,7 @@ void atk_image_get_image_position (AtkImage *image,
gint *y,
AtkCoordType coord_type);
-G_CONST_RETURN gchar* atk_image_get_image_locale (AtkImage *image);
+const gchar* atk_image_get_image_locale (AtkImage *image);
G_END_DECLS