From fa817ae092d43a087263ca8180eac3dc04af21b2 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 18 Dec 2023 19:03:53 +0000 Subject: [PATCH] Fix typo in GtkAspectFrame.yalign accessor Copy-paste error. Fixes: #6273 --- gtk/gtkaspectframe.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkaspectframe.c b/gtk/gtkaspectframe.c index 95a4e69b27..49ba1b1b31 100644 --- a/gtk/gtkaspectframe.c +++ b/gtk/gtkaspectframe.c @@ -24,7 +24,7 @@ * Modified by the GTK+ Team and others 1997-2001. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with - * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ /** @@ -414,7 +414,7 @@ gtk_aspect_frame_get_yalign (GtkAspectFrame *self) { g_return_val_if_fail (GTK_IS_ASPECT_FRAME (self), 0.5); - return self->xalign; + return self->yalign; } /**