diff options
author | Matthias Clasen <mclasen@redhat.com> | 2019-04-05 11:59:24 +0000 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2019-04-05 12:01:43 +0000 |
commit | b14f0b89873af90533a64848a7f1c763087f374a (patch) | |
tree | cd7d055d4e1f2801568ca2d712beab6552e2c886 /gtk/gtkgrid.c | |
parent | edbc99104ff09f5789746d4962056746ca8df783 (diff) | |
download | gtk+-b14f0b89873af90533a64848a7f1c763087f374a.tar.gz |
grid: Annotate out args as optional
They are optional, so annotate them as such.
Diffstat (limited to 'gtk/gtkgrid.c')
-rw-r--r-- | gtk/gtkgrid.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkgrid.c b/gtk/gtkgrid.c index ce67b00609..fdc3bec99e 100644 --- a/gtk/gtkgrid.c +++ b/gtk/gtkgrid.c @@ -1080,10 +1080,10 @@ gtk_grid_get_baseline_row (GtkGrid *grid) * gtk_grid_query_child: * @grid: a #GtkGrid * @child: a #GtkWidget child of @grid - * @left: (out): the column used to attach the left side of @child - * @top: (out): the row used to attach the top side of @child - * @width: (out): the number of columns @child spans - * @height: (out): the number of rows @child spans + * @left: (out) (optional): the column used to attach the left side of @child + * @top: (out) (optional): the row used to attach the top side of @child + * @width: (out) (optional): the number of columns @child spans + * @height: (out) (optiona): the number of rows @child spans * * Queries the attach points and spans of @child inside the given #GtkGrid. */ |