summaryrefslogtreecommitdiff
path: root/gtk/gtkgrid.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-04-05 11:59:24 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-04-05 12:01:43 +0000
commitb14f0b89873af90533a64848a7f1c763087f374a (patch)
treecd7d055d4e1f2801568ca2d712beab6552e2c886 /gtk/gtkgrid.c
parentedbc99104ff09f5789746d4962056746ca8df783 (diff)
downloadgtk+-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.c8
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.
*/