Apply trivial review suggestions

This commit is contained in:
Emmanuele Bassi 2022-11-22 12:54:42 +00:00 committed by Emmanuele Bassi
parent e915546b44
commit e083bd7920
2 changed files with 6 additions and 3 deletions

View 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);
}

View 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