diff options
author | Timm Bäder <mail@baedert.org> | 2017-07-05 13:09:32 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2017-07-19 21:27:15 -0400 |
commit | 23f90e3d67073b9b2c6ae3e2005adf71256296f4 (patch) | |
tree | e1470e7fc60d791c8cf1901e9822a795726eb7a7 /gtk/gtkcenterbox.c | |
parent | 1e4d11b99565df6f7be95e874f2661244c9de52c (diff) | |
download | gtk+-23f90e3d67073b9b2c6ae3e2005adf71256296f4.tar.gz |
centerbox: Add some missing return value annotations
Diffstat (limited to 'gtk/gtkcenterbox.c')
-rw-r--r-- | gtk/gtkcenterbox.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcenterbox.c b/gtk/gtkcenterbox.c index 4a65b9d96a..ee2fa3592e 100644 --- a/gtk/gtkcenterbox.c +++ b/gtk/gtkcenterbox.c @@ -799,7 +799,7 @@ gtk_center_box_set_end_widget (GtkCenterBox *self, * * Gets the start widget. * - * Returns: the start widget. + * Returns: (transfer none): the start widget. * * Since: 3.92 */ @@ -815,7 +815,7 @@ gtk_center_box_get_start_widget (GtkCenterBox *self) * * Gets the center widget. * - * Returns: the center widget. + * Returns: (transfer none): the center widget. * * Since: 3.92 */ @@ -831,7 +831,7 @@ gtk_center_box_get_center_widget (GtkCenterBox *self) * * Gets the end widget. * - * Returns: the end widget. + * Returns: (transfer none): the end widget. * * Since: 3.92 */ |