From: Emmanuele Bassi Date: Tue, 22 Nov 2022 12:54:42 +0000 (+0000) Subject: Apply trivial review suggestions X-Git-Tag: archive/raspbian/4.12.3+ds-1+rpi1~1^2^2^2~22^2~8^2~9^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e083bd7920986b03874b2dd205fb1fd968becec8;p=gtk4.git Apply trivial review suggestions --- diff --git a/gtk/gtkaccessible.c b/gtk/gtkaccessible.c index 03d3afad6c..848d9a0bd9 100644 --- a/gtk/gtkaccessible.c +++ b/gtk/gtkaccessible.c @@ -832,8 +832,11 @@ gtk_accessible_bounds_changed (GtkAccessible *self) * Since: 4.10 */ gboolean -gtk_accessible_get_bounds (GtkAccessible *self, - int *x, int *y, int *width, int *height) +gtk_accessible_get_bounds (GtkAccessible *self, + int *x, + int *y, + int *width, + int *height) { return GTK_ACCESSIBLE_GET_IFACE (self)->get_bounds (self, x, y, width, height); } diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c index d02cf8aca7..3e99575d29 100644 --- a/gtk/gtkstack.c +++ b/gtk/gtkstack.c @@ -290,7 +290,7 @@ gtk_stack_page_accessible_get_bounds (GtkAccessible *accessible, if (page->widget != NULL) return gtk_accessible_get_bounds (GTK_ACCESSIBLE (page->widget), x, y, width, height); else - return false; + return FALSE; } static void