aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r--calendar/gui/alarm-notify/alarm-notify-dialog.c2
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c
index c914bdb8a0..af31715ea9 100644
--- a/calendar/gui/alarm-notify/alarm-notify-dialog.c
+++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c
@@ -228,7 +228,7 @@ write_html_heading (GtkHTMLStream *stream, const char *message,
gchar *icon_path;
icaltimezone *current_zone;
- icon_path = e_icon_factory_get_icon_filename ("stock_alarm", 48);
+ icon_path = e_icon_factory_get_icon_filename ("stock_alarm", E_ICON_SIZE_DIALOG);
image_path = g_strdup_printf ("file://%s", icon_path);
g_free (icon_path);
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index 83e676d12c..b00e979ad6 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -895,7 +895,7 @@ tray_icon_blink_cb (gpointer data)
pixbuf = e_icon_factory_get_icon (tray_data->blink_state == TRUE ?
"stock_appointment-reminder-excl" :
"stock_appointment-reminder",
- 24);
+ E_ICON_SIZE_LARGE_TOOLBAR);
gtk_image_set_from_pixbuf (GTK_IMAGE (tray_data->image), pixbuf);
gdk_pixbuf_unref (pixbuf);
@@ -949,7 +949,7 @@ display_notification (time_t trigger, CompQueuedAlarms *cqa,
/* FIXME: Use stock image equivalent when it becomes available */
tray_icon = egg_tray_icon_new (qa->instance->auid);
- pixbuf = e_icon_factory_get_icon ("stock_appointment-reminder", 24);
+ pixbuf = e_icon_factory_get_icon ("stock_appointment-reminder", E_ICON_SIZE_LARGE_TOOLBAR);
image = gtk_image_new_from_pixbuf (pixbuf);
gdk_pixbuf_unref (pixbuf);
ebox = gtk_event_box_new ();