Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Fix annotations for source/target in g_object_bind_property_*
Browse files Browse the repository at this point in the history
We use gpointer for convience of the C API users, but introspection
users will not like it.

https://bugzilla.gnome.org/show_bug.cgi?id=659838
  • Loading branch information
Emmanuele Bassi committed Sep 22, 2011
1 parent a9b597b commit 4b1bf18
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gobject/gbinding.c
Expand Up @@ -771,9 +771,9 @@ g_binding_get_target_property (GBinding *binding)

/**
* g_object_bind_property_full:
* @source: the source #GObject
* @source: (type GObject.Object): the source #GObject
* @source_property: the property on @source to bind
* @target: the target #GObject
* @target: (type GObject.Object): the target #GObject
* @target_property: the property on @target to bind
* @flags: flags to pass to #GBinding
* @transform_to: (scope notified) (allow-none): the transformation function
Expand Down Expand Up @@ -961,9 +961,9 @@ g_object_bind_property_full (gpointer source,

/**
* g_object_bind_property:
* @source: the source #GObject
* @source: (type GObject.Object): the source #GObject
* @source_property: the property on @source to bind
* @target: the target #GObject
* @target: (type GObject.Object): the target #GObject
* @target_property: the property on @target to bind
* @flags: flags to pass to #GBinding
*
Expand Down Expand Up @@ -1121,9 +1121,9 @@ bind_with_closures_free_func (gpointer data)

/**
* g_object_bind_property_with_closures:
* @source: the source #GObject
* @source: (type GObject.Object): the source #GObject
* @source_property: the property on @source to bind
* @target: the target #GObject
* @target: (type GObject.Object): the target #GObject
* @target_property: the property on @target to bind
* @flags: flags to pass to #GBinding
* @transform_to: a #GClosure wrapping the transformation function
Expand Down

0 comments on commit 4b1bf18

Please sign in to comment.