From eac0e06a7abeeedd681a7ed9d449750d65665b66 Mon Sep 17 00:00:00 2001 From: Bart Jacobs Date: Mon, 27 Sep 2021 21:23:45 +0000 Subject: [PATCH] ConstraintGuide getters: annotate out parameters as such --- gtk/gtkconstraintguide.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gtk/gtkconstraintguide.c b/gtk/gtkconstraintguide.c index f6fcd8d546..512b91cfd4 100644 --- a/gtk/gtkconstraintguide.c +++ b/gtk/gtkconstraintguide.c @@ -500,8 +500,8 @@ gtk_constraint_guide_set_min_size (GtkConstraintGuide *guide, /** * gtk_constraint_guide_get_min_size: * @guide: a `GtkConstraintGuide` object - * @width: (nullable): return location for the minimum width - * @height: (nullable): return location for the minimum height + * @width: (out) (optional): return location for the minimum width + * @height: (out) (optional): return location for the minimum height * * Gets the minimum size of @guide. */ @@ -552,8 +552,8 @@ gtk_constraint_guide_set_nat_size (GtkConstraintGuide *guide, /** * gtk_constraint_guide_get_nat_size: * @guide: a `GtkConstraintGuide` object - * @width: (nullable): return location for the natural width - * @height: (nullable): return location for the natural height + * @width: (out) (optional): return location for the natural width + * @height: (out) (optional): return location for the natural height * * Gets the natural size of @guide. */ @@ -604,8 +604,8 @@ gtk_constraint_guide_set_max_size (GtkConstraintGuide *guide, /** * gtk_constraint_guide_get_max_size: * @guide: a `GtkConstraintGuide` object - * @width: (nullable): return location for the maximum width - * @height: (nullable): return location for the maximum height + * @width: (out) (optional): return location for the maximum width + * @height: (out) (optional): return location for the maximum height * * Gets the maximum size of @guide. */