From d930ea7c1fc6aa29ee242ef0aaedbad911bed4e1 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 3 Oct 2015 22:40:27 -0400 Subject: [PATCH] style context: Avoid a compiler warning --- gtk/gtkstylecontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkstylecontext.c b/gtk/gtkstylecontext.c index a91db3a422..0217d55b49 100644 --- a/gtk/gtkstylecontext.c +++ b/gtk/gtkstylecontext.c @@ -1354,7 +1354,7 @@ gtk_style_context_list_classes (GtkStyleContext *context) classes = gtk_css_node_list_classes (context->priv->cssnode, &n_classes); for (i = n_classes; i > 0; i--) - classes_list = g_list_prepend (classes_list, g_quark_to_string (classes[i - 1])); + classes_list = g_list_prepend (classes_list, (gchar *)g_quark_to_string (classes[i - 1])); return classes_list; }