diff options
Diffstat (limited to 'plugins/mail-notification')
-rw-r--r-- | plugins/mail-notification/mail-notification.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c index 94cfa6c6c1..cc01d65c30 100644 --- a/plugins/mail-notification/mail-notification.c +++ b/plugins/mail-notification/mail-notification.c @@ -509,13 +509,15 @@ do_play_sound (gboolean beep, if (!beep) { #ifdef HAVE_CANBERRA if (!use_theme && file && *file) - ca_context_play (mailnotification, 0, - CA_PROP_MEDIA_FILENAME, file, - NULL); + ca_context_play ( + mailnotification, 0, + CA_PROP_MEDIA_FILENAME, file, + NULL); else - ca_context_play (mailnotification, 0, - CA_PROP_EVENT_ID,"message-new-email", - NULL); + ca_context_play ( + mailnotification, 0, + CA_PROP_EVENT_ID,"message-new-email", + NULL); #endif } else gdk_beep (); |