forked from AuroraMiddleware/gtk
Apply trivial review suggestions
This commit is contained in:
parent
e915546b44
commit
e083bd7920
@ -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);
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user