diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-06-08 05:01:58 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-08 05:04:13 +0800 |
commit | e0f11ae8eb198a8e153bbe9dbaf8290da1da7836 (patch) | |
tree | 96e163f9ca721a390d86b5e15c09c41822d6312e /calendar/alarm-notify | |
parent | 8df8892ffbb4fc42a775b608843d17616beb8cbf (diff) | |
download | gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar.gz gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar.bz2 gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar.lz gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar.xz gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.tar.zst gsoc2013-evolution-e0f11ae8eb198a8e153bbe9dbaf8290da1da7836.zip |
Bump minimum libnotify version to 0.7.
GNOME has included libnotify 0.7.x since GNOME 3.0. It's still an
optional dependency for Evolution, but if you're gonna use it you'll
need a GNOME3-era release.
Diffstat (limited to 'calendar/alarm-notify')
-rw-r--r-- | calendar/alarm-notify/alarm-queue.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/calendar/alarm-notify/alarm-queue.c b/calendar/alarm-notify/alarm-queue.c index a3a5351acd..2ffd427f45 100644 --- a/calendar/alarm-notify/alarm-queue.c +++ b/calendar/alarm-notify/alarm-queue.c @@ -1768,11 +1768,7 @@ popup_notification (time_t trigger, "%s %s", start_str, time_str); } -#ifdef HAVE_LIBNOTIFY_07 n = notify_notification_new (summary, body, "appointment-soon"); -#else - n = notify_notification_new (summary, body, "appointment-soon", NULL); -#endif /* HAVE_LIBNOTIFY_07 */ if (!notify_notification_show (n, NULL)) g_warning ("Could not send notification to daemon\n"); |