diff options
author | Martin Pitt <martinpitt@gnome.org> | 2012-05-16 18:00:04 +0200 |
---|---|---|
committer | Martin Pitt <martinpitt@gnome.org> | 2012-05-16 18:00:04 +0200 |
commit | ec399747147ecb3d1b087ef1ab2b4ec9f883851a (patch) | |
tree | 1314510b1b6475c11ac8b7abcc38f28f5a5e0a89 /gtk/gtkgrid.c | |
parent | ba965b30d270edf50a469f8209dbbfcec291e319 (diff) | |
download | gtk+-ec399747147ecb3d1b087ef1ab2b4ec9f883851a.tar.gz |
grid: add missing transfer annotation
gtk_grid_get_child_at() is missing a transfer annotation for the returned
widget, making it not introspectable.
Diffstat (limited to 'gtk/gtkgrid.c')
-rw-r--r-- | gtk/gtkgrid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkgrid.c b/gtk/gtkgrid.c index 03a0976e66..f8a281e711 100644 --- a/gtk/gtkgrid.c +++ b/gtk/gtkgrid.c @@ -1594,7 +1594,7 @@ gtk_grid_attach_next_to (GtkGrid *grid, * Gets the child of @grid whose area covers the grid * cell whose upper left corner is at @left, @top. * - * Returns: the child at the given position, or %NULL + * Returns: (transfer none): the child at the given position, or %NULL * * Since: 3.2 */ |