diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-06-13 11:48:45 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-06-13 11:48:45 +0100 |
commit | 2b6504ef3a8eb22b4d00c933e041fe2e1423142a (patch) | |
tree | 1a06f87df46e75384ad3f72b255a761a903fb9b7 /atk/atkutil.h | |
parent | 28ca51e39e84ee280e4352e752593d77810b1ba8 (diff) | |
download | atk-2b6504ef3a8eb22b4d00c933e041fe2e1423142a.tar.gz |
atk: Use const instead G_CONST_RETURN
https://bugzilla.gnome.org/show_bug.cgi?id=652205
Diffstat (limited to 'atk/atkutil.h')
-rwxr-xr-x | atk/atkutil.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/atk/atkutil.h b/atk/atkutil.h index b04b1c7..20eddc8 100755 --- a/atk/atkutil.h +++ b/atk/atkutil.h @@ -147,8 +147,8 @@ struct _AtkUtilClass gpointer data); void (* remove_key_event_listener) (guint listener_id); AtkObject* (* get_root) (void); - G_CONST_RETURN gchar* (* get_toolkit_name) (void); - G_CONST_RETURN gchar* (* get_toolkit_version) (void); + const gchar* (* get_toolkit_name) (void); + const gchar* (* get_toolkit_version) (void); }; GType atk_util_get_type (void); @@ -229,17 +229,17 @@ AtkObject* atk_get_focus_object (void); /* * Returns name string for the GUI toolkit. */ -G_CONST_RETURN gchar *atk_get_toolkit_name (void); +const gchar *atk_get_toolkit_name (void); /* * Returns version string for the GUI toolkit. */ -G_CONST_RETURN gchar *atk_get_toolkit_version (void); +const gchar *atk_get_toolkit_version (void); /* * Gets the current version of ATK */ -G_CONST_RETURN gchar *atk_get_version (void); +const gchar *atk_get_version (void); /* --- GType boilerplate --- */ /* convenience macros for atk type implementations, which for a type GtkGadgetAccessible will: |