diff options
author | Timm Bäder <mail@baedert.org> | 2019-08-25 14:56:13 +0200 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2019-09-09 17:36:25 +0200 |
commit | 1db59d1c89580970552e63e84ff43a3e0553d1eb (patch) | |
tree | f0627c814cf60f6deea173087b4bfdc2adaa4af4 /gtk/gtkfixedlayout.h | |
parent | afb3715700b49b054f1048e1b6fc36643f0f89ca (diff) | |
download | gtk+-1db59d1c89580970552e63e84ff43a3e0553d1eb.tar.gz |
fixedlayout: Don't call the child transform position
It's a full transform and not just a translation these days.
Diffstat (limited to 'gtk/gtkfixedlayout.h')
-rw-r--r-- | gtk/gtkfixedlayout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkfixedlayout.h b/gtk/gtkfixedlayout.h index 090aceb138..8381d94c92 100644 --- a/gtk/gtkfixedlayout.h +++ b/gtk/gtkfixedlayout.h @@ -41,9 +41,9 @@ GDK_AVAILABLE_IN_ALL G_DECLARE_FINAL_TYPE (GtkFixedLayoutChild, gtk_fixed_layout_child, GTK, FIXED_LAYOUT_CHILD, GtkLayoutChild) GDK_AVAILABLE_IN_ALL -void gtk_fixed_layout_child_set_position (GtkFixedLayoutChild *child, - GskTransform *position); +void gtk_fixed_layout_child_set_transform (GtkFixedLayoutChild *child, + GskTransform *transform); GDK_AVAILABLE_IN_ALL -GskTransform * gtk_fixed_layout_child_get_position (GtkFixedLayoutChild *child); +GskTransform * gtk_fixed_layout_child_get_transform (GtkFixedLayoutChild *child); G_END_DECLS |