diff options
author | Milan Crha <mcrha@redhat.com> | 2010-11-01 18:40:59 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-11-01 18:40:59 +0800 |
commit | 3bffd96b038194ceef081735197278b0c8cd080d (patch) | |
tree | 9904446dd9318d89c816d71c010704970f6fa87e /calendar | |
parent | d9468fbb2919794abe3c0290611a9f33b61ed4cf (diff) | |
download | gsoc2013-evolution-3bffd96b038194ceef081735197278b0c8cd080d.tar.gz gsoc2013-evolution-3bffd96b038194ceef081735197278b0c8cd080d.tar.zst gsoc2013-evolution-3bffd96b038194ceef081735197278b0c8cd080d.zip |
stock_appontment-reminder icons renamed (reverts previous commit)
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index 752ce3749e..e8b3f86201 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -1390,9 +1390,9 @@ tray_icon_blink_cb (gpointer data) tray_blink_state = !tray_blink_state; if (tray_blink_state || tray_blink_countdown <= 0) - icon_name = "stock_appointment-reminder-excl"; + icon_name = "appointment-missed"; else - icon_name = "stock_appointment-reminder"; + icon_name = "appointment-soon"; if (tray_icon) gtk_status_icon_set_from_icon_name (tray_icon, icon_name); @@ -1479,7 +1479,7 @@ display_notification (time_t trigger, CompQueuedAlarms *cqa, if (tray_icon == NULL) { tray_icon = gtk_status_icon_new (); gtk_status_icon_set_from_icon_name ( - tray_icon, "stock_appointment-reminder"); + tray_icon, "appointment-soon"); g_signal_connect (G_OBJECT (tray_icon), "activate", G_CALLBACK (icon_activated), NULL); g_signal_connect (G_OBJECT (tray_icon), "popup-menu", @@ -1607,9 +1607,9 @@ popup_notification (time_t trigger, CompQueuedAlarms *cqa, } #ifdef HAVE_LIBNOTIFY_07 - n = notify_notification_new (summary, body, "stock_appointment-reminder"); + n = notify_notification_new (summary, body, "appointment-soon"); #else - n = notify_notification_new (summary, body, "stock_appointment-reminder", NULL); + 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"); |