From 147aa51092a2615339a9adf9e1626cfb7bb3a97f Mon Sep 17 00:00:00 2001 From: infirit Date: Fri, 24 Jul 2015 15:53:08 +0200 Subject: Fix several incompatible pointer type warnings --- src/themes/standard/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/themes/standard') diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c index 010003e..9c012a9 100644 --- a/src/themes/standard/theme.c +++ b/src/themes/standard/theme.c @@ -958,7 +958,7 @@ static gboolean countdown_expose_cb(GtkWidget* pie, GdkEventExpose* event, Windo #endif style = gtk_widget_get_style(windata->win); - context = gdk_cairo_create(GTK_WINDOW(gtk_widget_get_window(windata->pie_countdown))); + context = gdk_cairo_create(GDK_WINDOW(gtk_widget_get_window(windata->pie_countdown))); GtkAllocation alloc; gtk_widget_get_allocation(pie, &alloc); cairo_set_operator(context, CAIRO_OPERATOR_SOURCE); -- cgit v1.2.1