diff options
Diffstat (limited to 'src/fe-gtk/notifications/notification-windows.c')
-rw-r--r-- | src/fe-gtk/notifications/notification-windows.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <Windows.h> -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 |