summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-office/orage/files')
-rw-r--r--app-office/orage/files/orage-4.8.0-libnotify-0.7.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/app-office/orage/files/orage-4.8.0-libnotify-0.7.patch b/app-office/orage/files/orage-4.8.0-libnotify-0.7.patch
deleted file mode 100644
index 16503b95e68c..000000000000
--- a/app-office/orage/files/orage-4.8.0-libnotify-0.7.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-http://bugzilla.xfce.org/show_bug.cgi?id=7204
-
---- src/reminder.c
-+++ src/reminder.c
-@@ -557,12 +557,19 @@
- g_strlcat(heading, l_alarm->action_time, 90);
- g_strlcat(heading, "<\b>", 10);
- }
-- n = notify_notification_new(heading, l_alarm->description, NULL, NULL);
-+ n = notify_notification_new(heading, l_alarm->description, NULL
-+#ifdef HAVE_LIBNOTIFY_07
-+ );
-+#else
-+ , NULL);
-+#endif
- l_alarm->active_alarm->active_notify = n;
-+#ifndef HAVE_LIBNOTIFY_07
- if (g_par.trayIcon
- && gtk_status_icon_is_embedded((GtkStatusIcon *)g_par.trayIcon))
- notify_notification_attach_to_status_icon(n
- , (GtkStatusIcon *)g_par.trayIcon);
-+#endif
-
- if (l_alarm->notify_timeout == -1)
- notify_notification_set_timeout(n, NOTIFY_EXPIRES_NEVER);