Apply trivial review suggestions
authorEmmanuele Bassi <ebassi@gmail.com>
Tue, 22 Nov 2022 12:54:42 +0000 (12:54 +0000)
committerEmmanuele Bassi <ebassi@gnome.org>
Fri, 3 Feb 2023 10:49:17 +0000 (11:49 +0100)
gtk/gtkaccessible.c
gtk/gtkstack.c

index 03d3afad6c42e8bc469966976e1e1021781c53ea..848d9a0bd9bd77cbd405c06dee5cc7dee1f26f36 100644 (file)
@@ -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);
 }
index d02cf8aca74197585e604ae0c2bfd28109dc2830..3e99575d29a7c311b3272dcd98d4eb524c809ef2 100644 (file)
@@ -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