diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2019-06-30 10:36:33 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2019-07-01 00:10:11 +0100 |
commit | 651adbfb39f4fbc64c3d78efa399f0bbd3cc9dda (patch) | |
tree | 84b2900f62ef0c32d019b1a6f4ab1f6d3e98e5f6 /gtk/gtkconstraintlayout.h | |
parent | 3204347bb05defe7bd8986759260e27ee9a14356 (diff) | |
download | gtk+-651adbfb39f4fbc64c3d78efa399f0bbd3cc9dda.tar.gz |
Return the list of constraints added via VFL description
Otherwise it's impossible to remove them.
Diffstat (limited to 'gtk/gtkconstraintlayout.h')
-rw-r--r-- | gtk/gtkconstraintlayout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkconstraintlayout.h b/gtk/gtkconstraintlayout.h index 5294ec74a4..52a79ac93f 100644 --- a/gtk/gtkconstraintlayout.h +++ b/gtk/gtkconstraintlayout.h @@ -79,7 +79,7 @@ GDK_AVAILABLE_IN_ALL void gtk_constraint_layout_remove_all_constraints (GtkConstraintLayout *manager); GDK_AVAILABLE_IN_ALL -gboolean gtk_constraint_layout_add_constraints_from_description (GtkConstraintLayout *manager, +GList * gtk_constraint_layout_add_constraints_from_description (GtkConstraintLayout *manager, const char * const lines[], gsize n_lines, int hspacing, @@ -88,7 +88,7 @@ gboolean gtk_constraint_layout_add_constraints_from_description const char *first_view, ...) G_GNUC_NULL_TERMINATED; GDK_AVAILABLE_IN_ALL -gboolean gtk_constraint_layout_add_constraints_from_descriptionv (GtkConstraintLayout *manager, +GList * gtk_constraint_layout_add_constraints_from_descriptionv (GtkConstraintLayout *manager, const char * const lines[], gsize n_lines, int hspacing, |