From 7063406d6caf42f61d87e42db6ce46df9e64ffef Mon Sep 17 00:00:00 2001 From: TingPing Date: Wed, 11 Feb 2015 17:58:44 -0500 Subject: Remove input_balloon_time setting This setting doesn't work on most platforms including some notification daemons on linux. Where it does work I think it is bad behavior to default overriding their defaults anyway. It's most valuable use was likely win32 tray balloons which no longer exist. --- src/fe-gtk/notifications/notification-windows.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/fe-gtk/notifications/notification-windows.c') diff --git a/src/fe-gtk/notifications/notification-windows.c b/src/fe-gtk/notifications/notification-windows.c index 16cf3412..3fade306 100644 --- a/src/fe-gtk/notifications/notification-windows.c +++ b/src/fe-gtk/notifications/notification-windows.c @@ -23,20 +23,20 @@ #include -void (*winrt_notification_backend_show) (const char *title, const char *text, int timeout) = NULL; +void (*winrt_notification_backend_show) (const char *title, const char *text) = NULL; int (*winrt_notification_backend_init) (void) = NULL; void (*winrt_notification_backend_deinit) (void) = NULL; int (*winrt_notification_backend_supported) (void) = NULL; void -notification_backend_show (const char *title, const char *text, int timeout) +notification_backend_show (const char *title, const char *text) { if (winrt_notification_backend_show == NULL) { return; } - winrt_notification_backend_show (title, text, timeout); + winrt_notification_backend_show (title, text); } int -- cgit 1.4.1