aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-send-recv.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-04-20 05:45:14 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-04-20 05:45:14 +0800
commite739391cceefb5b2c60c83f0aced1f8f399092f2 (patch)
tree2d2ce75c0448549173dc73b2da951c6ab576fbd7 /mail/mail-send-recv.c
parent6a49b7889388637b52d52403638c0d47c982e91c (diff)
downloadgsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.gz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.bz2
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.lz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.xz
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.tar.zst
gsoc2013-evolution-e739391cceefb5b2c60c83f0aced1f8f399092f2.zip
Same.
2004-04-19 Jeffrey Stedfast <fejj@ximian.com> * message-tag-followup.c (construct): Same. * message-list.c (message_list_init_images): Same. * mail-send-recv.c (build_dialog): Same. * mail-mt.c (do_op_status): Same. * mail-config-druid.c (evolution_mail_config_wizard_new): Same. * em-popup.c (em_popup_create_menu): Same. * em-format-html-display.c (efhd_format_prefix): Same. * em-format-html.c (efh_format_secure): Same as below. * em-folder-tree.c (render_pixbuf): Don't use absolute icon sizes, use the e-icon-factory enums. svn path=/trunk/; revision=25527
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r--mail/mail-send-recv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index ebd233f586..a27ca71da5 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -397,7 +397,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati
} else if (info->timeout_id == 0)
info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info);
- pixbuf = e_icon_factory_get_icon ("stock_mail-receive", 24);
+ pixbuf = e_icon_factory_get_icon ("stock_mail-receive", E_ICON_SIZE_LARGE_TOOLBAR);
recv_icon = gtk_image_new_from_pixbuf (pixbuf);
gdk_pixbuf_unref (pixbuf);
@@ -452,7 +452,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati
} else if (info->timeout_id == 0)
info->timeout_id = g_timeout_add (STATUS_TIMEOUT, operation_status_timeout, info);
- pixbuf = e_icon_factory_get_icon ("stock_mail-send", 24);
+ pixbuf = e_icon_factory_get_icon ("stock_mail-send", E_ICON_SIZE_LARGE_TOOLBAR);
send_icon = gtk_image_new_from_pixbuf (pixbuf);
gdk_pixbuf_unref (pixbuf);