summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2009-04-30 12:14:16 +0200
committerLennart Poettering <lennart@poettering.net>2009-05-10 01:05:47 +0200
commita094ed99c3231baf9a9ae1d003c67b86fd7faa59 (patch)
treeda63dad9f6f5a9dcbf3b9a77203194628c93da9b
parent33e3a5daf880db61b58013143acff29bfcf283d1 (diff)
Remove deprecated GTK+ symbol. Fixes bug #21358.
-rw-r--r--src/canberra-gtk-module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/canberra-gtk-module.c b/src/canberra-gtk-module.c
index 302eeb4..14f12da 100644
--- a/src/canberra-gtk-module.c
+++ b/src/canberra-gtk-module.c
@@ -695,7 +695,7 @@ static gboolean emission_hook_cb(GSignalInvocationHint *hint, guint n_param_valu
g_queue_push_tail(&sound_event_queue, d);
if (idle_id == 0)
- idle_id = g_idle_add_full(GTK_PRIORITY_REDRAW-1, (GSourceFunc) idle_cb, NULL, NULL);
+ idle_id = g_idle_add_full(GDK_PRIORITY_REDRAW-1, (GSourceFunc) idle_cb, NULL, NULL);
return TRUE;
}