From d38b1cd953f607f0a08041fde12b6e15970de221 Mon Sep 17 00:00:00 2001 From: JosephMcc Date: Fri, 13 Jan 2017 03:24:27 -0800 Subject: [PATCH] xed-statusbar: Fix a missing cast --- xed/xed-statusbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xed/xed-statusbar.c b/xed/xed-statusbar.c index 97eb85c..68fb289 100644 --- a/xed/xed-statusbar.c +++ b/xed/xed-statusbar.c @@ -161,7 +161,7 @@ xed_statusbar_init (XedStatusbar *statusbar) gtk_box_pack_start (GTK_BOX (statusbar), statusbar->priv->error_frame, FALSE, TRUE, 0); - gtk_style_context_add_class (gtk_widget_get_style_context (statusbar), "xed-statusbar"); + gtk_style_context_add_class (gtk_widget_get_style_context GTK_WIDGET (statusbar), "xed-statusbar"); } /**