forked from AuroraMiddleware/gtk
Use the right type when calling GtkWidget methods
Let's avoid complaints from the compiler.
This commit is contained in:
parent
03afe9be4e
commit
a3e82f20a1
@ -4232,7 +4232,7 @@ gtk_label_style_updated (GtkWidget *widget)
|
|||||||
if (change == NULL || gtk_css_style_change_affects (change, GTK_CSS_AFFECTS_FONT))
|
if (change == NULL || gtk_css_style_change_affects (change, GTK_CSS_AFFECTS_FONT))
|
||||||
{
|
{
|
||||||
gtk_label_clear_layout (GTK_LABEL (widget));
|
gtk_label_clear_layout (GTK_LABEL (widget));
|
||||||
gtk_widget_queue_resize (label);
|
gtk_widget_queue_resize (widget);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (change == NULL || gtk_css_style_change_affects (change, GTK_CSS_AFFECTS_TEXT_ATTRS) ||
|
if (change == NULL || gtk_css_style_change_affects (change, GTK_CSS_AFFECTS_TEXT_ATTRS) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user