aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-itip-control.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-05-18 03:53:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-05-18 03:53:11 +0800
commit2b5742659639ceb7069ef7e78ee3a98f06d5eeb7 (patch)
tree9db13914df5e37e61dd6c7504c430823872394a1 /calendar/gui/e-itip-control.c
parent2c71a3328a34e23efdc5b52529ef975c01370c7a (diff)
downloadgsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.gz
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.bz2
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.lz
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.xz
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.tar.zst
gsoc2013-evolution-2b5742659639ceb7069ef7e78ee3a98f06d5eeb7.zip
Use E_ICON_SIZE_MENU
2004-05-17 Jeffrey Stedfast <fejj@novell.com> * gui/tasks-component.c (add_popup_menu_item): Use E_ICON_SIZE_MENU * gui/e-timezone-entry.c (e_timezone_entry_init): Use E_ICON_SIZE_BUTTON * gui/e-itip-control.c (write_error_html): Use E_ICON_SIZE enums. (write_html): Same. * gui/e-calendar-view.c (e_calendar_view_set_status_message): Use E_ICON_SIZE_STATUS (setup_popup_icons): Use E_ICON_SIZE_MENU * gui/e-calendar-table.c (e_calendar_table_init): Use E_ICON_SIZE_LIST rather than a hard-coded value of 16 pixels. (e_calendar_table_set_status_message): Use E_ICON_SIZE_STATUS * gui/calendar-component.c (add_popup_menu_item): Use E_ICON_SIZE_MENU rather than hard-coding the pixel size. svn path=/trunk/; revision=25934
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r--calendar/gui/e-itip-control.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index 13bce78ec9..53dd7fbec6 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -778,7 +778,7 @@ write_error_html (EItipControl *itip, const gchar *itip_err)
/* The column for the image */
gtk_html_stream_printf (html_stream, "<tr><td width=48 align=\"center\" valign=\"top\" rowspan=\"8\">");
/* The image */
- filename = e_icon_factory_get_icon_filename ("stock_new-meeting", 48);
+ filename = e_icon_factory_get_icon_filename ("stock_new-meeting", E_ICON_SIZE_DIALOG);
gtk_html_stream_printf (html_stream, "<img src=\"%s\"></td>", filename);
g_free (filename);
@@ -837,7 +837,7 @@ write_html (EItipControl *itip, const gchar *itip_desc, const gchar *itip_title,
gtk_html_write (GTK_HTML (priv->html), html_stream, const_html, strlen(const_html));
/* The image */
- filename = e_icon_factory_get_icon_filename ("stock_new-meeting", 48);
+ filename = e_icon_factory_get_icon_filename ("stock_new-meeting", E_ICON_SIZE_DIALOG);
gtk_html_stream_printf (html_stream, "<img src=\"%s\"></td>", filename);
g_free (filename);