summaryrefslogtreecommitdiff
path: root/src/themes/slider
diff options
context:
space:
mode:
authorinfirit <[email protected]>2015-07-24 15:53:08 +0200
committerinfirit <[email protected]>2015-07-24 16:00:34 +0200
commit1b3d922029e8acafd5bb5a5d3741cab5f1aed055 (patch)
treee9b22aa1aafd7308c781ca370f6ef18e827ea4b4 /src/themes/slider
parent0cbc509b7b171e1774bf3169f971e2488ca7fdd2 (diff)
downloadmate-notification-daemon-1b3d922029e8acafd5bb5a5d3741cab5f1aed055.tar.bz2
mate-notification-daemon-1b3d922029e8acafd5bb5a5d3741cab5f1aed055.tar.xz
Fix several incompatible pointer type warnings
Diffstat (limited to 'src/themes/slider')
-rw-r--r--src/themes/slider/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/themes/slider/theme.c b/src/themes/slider/theme.c
index 1bb6ecf..c6673d4 100644
--- a/src/themes/slider/theme.c
+++ b/src/themes/slider/theme.c
@@ -905,7 +905,7 @@ static gboolean on_countdown_expose(GtkWidget* pie, GdkEventExpose* event, Windo
cairo_surface_t* surface;
double r, g, b;
- context = gdk_cairo_create(gtk_widget_get_window(GDK_WINDOW(windata->pie_countdown)));
+ context = gdk_cairo_create(GDK_WINDOW(gtk_widget_get_window(windata->pie_countdown)));
#if GTK_CHECK_VERSION(3, 0, 0)
style = gtk_widget_get_style_context(windata->win);
#else