aboutsummaryrefslogtreecommitdiff
path: root/mail/evolution/files
diff options
context:
space:
mode:
authorKoop Mast <kwm@FreeBSD.org>2011-08-23 18:39:19 +0000
committerKoop Mast <kwm@FreeBSD.org>2011-08-23 18:39:19 +0000
commitfe61bf1eb4f2758636a3c065686a833eb412df25 (patch)
tree1474457ea487adcafec2ab29e99ab61897a3e479 /mail/evolution/files
parent5732783897145621b6af3ab08fba8d9af40f338b (diff)
downloadports-fe61bf1eb4f2758636a3c065686a833eb412df25.tar.gz
ports-fe61bf1eb4f2758636a3c065686a833eb412df25.zip
Notes
Diffstat (limited to 'mail/evolution/files')
-rw-r--r--mail/evolution/files/patch-calendar_gui_alarm-notify_alarm-queue.c11
-rw-r--r--mail/evolution/files/patch-plugins_mail-notification_mail-notification.c13
-rw-r--r--mail/evolution/files/patch-plugins_publish-calendar_publish-calendar.c12
3 files changed, 36 insertions, 0 deletions
diff --git a/mail/evolution/files/patch-calendar_gui_alarm-notify_alarm-queue.c b/mail/evolution/files/patch-calendar_gui_alarm-notify_alarm-queue.c
new file mode 100644
index 000000000000..e713de004f69
--- /dev/null
+++ b/mail/evolution/files/patch-calendar_gui_alarm-notify_alarm-queue.c
@@ -0,0 +1,11 @@
+--- calendar/gui/alarm-notify/alarm-queue.c.orig 2011-03-07 20:53:40.000000000 +0100
++++ calendar/gui/alarm-notify/alarm-queue.c 2011-03-07 20:53:50.000000000 +0100
+@@ -1606,7 +1606,7 @@ popup_notification (time_t trigger, Comp
+ body = g_strdup_printf ("%s %s", start_str, time_str);
+ }
+
+- n = notify_notification_new (summary, body, "stock_appointment-reminder", NULL);
++ n = notify_notification_new (summary, body, "stock_appointment-reminder");
+ if (!notify_notification_show(n, NULL))
+ g_warning ("Could not send notification to daemon\n");
+
diff --git a/mail/evolution/files/patch-plugins_mail-notification_mail-notification.c b/mail/evolution/files/patch-plugins_mail-notification_mail-notification.c
new file mode 100644
index 000000000000..adddf1b38a77
--- /dev/null
+++ b/mail/evolution/files/patch-plugins_mail-notification_mail-notification.c
@@ -0,0 +1,13 @@
+--- plugins/mail-notification/mail-notification.c.orig 2011-03-07 21:24:25.000000000 +0100
++++ plugins/mail-notification/mail-notification.c 2011-03-07 21:24:40.000000000 +0100
+@@ -564,9 +564,7 @@ new_notify_status (EMEventTargetFolder *
+
+ notify = notify_notification_new (
+ _("New email"), safetext,
+- "mail-unread", NULL);
+- notify_notification_attach_to_status_icon (
+- notify, status_icon);
++ "mail-unread");
+
+ /* Check if actions are supported */
+ if (can_support_actions ()) {
diff --git a/mail/evolution/files/patch-plugins_publish-calendar_publish-calendar.c b/mail/evolution/files/patch-plugins_publish-calendar_publish-calendar.c
new file mode 100644
index 000000000000..55120db4c19c
--- /dev/null
+++ b/mail/evolution/files/patch-plugins_publish-calendar_publish-calendar.c
@@ -0,0 +1,12 @@
+--- plugins/publish-calendar/publish-calendar.c.orig 2011-03-07 21:12:59.000000000 +0100
++++ plugins/publish-calendar/publish-calendar.c 2011-03-07 21:14:23.000000000 +0100
+@@ -150,8 +150,7 @@ update_publish_notification (GtkMessageT
+ return;
+ }
+
+- notify = notify_notification_new (_("Calendar Publishing"), actual_msg->str, stock_name, NULL);
+- notify_notification_attach_to_status_icon (notify, status_icon);
++ notify = notify_notification_new (_("Calendar Publishing"), actual_msg->str, stock_name);
+ notify_notification_set_urgency (notify, NOTIFY_URGENCY_NORMAL);
+ notify_notification_set_timeout (notify, NOTIFY_EXPIRES_DEFAULT);
+ g_timeout_add (500, show_notify_cb, NULL);