Style fix
authorLukáš Tyrychtr <lukastyrychtr@gmail.com>
Fri, 16 Sep 2022 11:44:34 +0000 (13:44 +0200)
committerEmmanuele Bassi <ebassi@gnome.org>
Fri, 3 Feb 2023 10:49:17 +0000 (11:49 +0100)
gtk/gtkstack.c
gtk/gtkwidget.c

index e191d1252d75e326d42ea1bfd755fbc28220f8ec..2d2de8990dfdd56b926b53a75389e98bc39175ca 100644 (file)
@@ -773,7 +773,7 @@ gtk_stack_accessible_get_child_at_index (GtkAccessible *accessible, guint index)
 }
 
 static void
-gtk_stack_accessible_init(GtkAccessibleInterface *iface)
+gtk_stack_accessible_init (GtkAccessibleInterface *iface)
 {
   iface->get_child_at_index = gtk_stack_accessible_get_child_at_index;
 }
index 4f0c94dc62757f2f8832f40860271abbb7b8a8a4..115bef582657db3555873b102d22fdba39095051 100644 (file)
@@ -8472,7 +8472,8 @@ gtk_widget_accessible_get_parent (GtkAccessible *self)
 }
 
 static GtkAccessible *
-gtk_widget_accessible_get_child_at_index (GtkAccessible *self, guint index)
+gtk_widget_accessible_get_child_at_index (GtkAccessible *self,
+                                          guint          index)
 {
   guint idx = 0;
   GtkWidget *child;
@@ -8488,7 +8489,12 @@ gtk_widget_accessible_get_child_at_index (GtkAccessible *self, guint index)
 }
 
 static gboolean
-gtk_widget_accessible_get_bounds (GtkAccessible *self, int *x, int *y, int *width, int *height) {
+gtk_widget_accessible_get_bounds (GtkAccessible *self,
+                                  int           *x,
+                                  int           *y,
+                                  int           *width,
+                                  int           *height)
+{
   GtkWidget *widget;
   GtkWidget *parent;
   double translated_x, translated_y;