summaryrefslogtreecommitdiff
path: root/gobject/gbinding.h
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2011-03-12 21:50:45 -0500
committerRyan Lortie <desrt@desrt.ca>2011-06-09 11:15:40 -0400
commit8073759f8cad2033169730c1b95af5b763e3c126 (patch)
tree37400042d458e879ed0071ce4c01e74a330e3578 /gobject/gbinding.h
parent8f21e8145cf084ecd66c30cd868f56f7dcd87334 (diff)
downloadglib-8073759f8cad2033169730c1b95af5b763e3c126.tar.gz
Remove all uses of G_CONST_RETURN
Just use 'const'. https://bugzilla.gnome.org/show_bug.cgi?id=644611
Diffstat (limited to 'gobject/gbinding.h')
-rw-r--r--gobject/gbinding.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gobject/gbinding.h b/gobject/gbinding.h
index fe6799d43..1b715402e 100644
--- a/gobject/gbinding.h
+++ b/gobject/gbinding.h
@@ -106,8 +106,8 @@ GType g_binding_get_type (void) G_GNUC_CONST;
GBindingFlags g_binding_get_flags (GBinding *binding);
GObject * g_binding_get_source (GBinding *binding);
GObject * g_binding_get_target (GBinding *binding);
-G_CONST_RETURN gchar *g_binding_get_source_property (GBinding *binding);
-G_CONST_RETURN gchar *g_binding_get_target_property (GBinding *binding);
+const gchar * g_binding_get_source_property (GBinding *binding);
+const gchar * g_binding_get_target_property (GBinding *binding);
GBinding *g_object_bind_property (gpointer source,
const gchar *source_property,