aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-itip-control.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-05-24 23:54:43 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-05-25 00:43:11 +0800
commit2393a5d17e92435cb3d7726b04ff6f4a5c27c8db (patch)
treec69db32dede1ce4e8bc233dc7c5ef83799b258dd /calendar/gui/e-itip-control.c
parent7702ac84d7e02093881d5a139398b1615e4070ac (diff)
downloadgsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.gz
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.bz2
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.lz
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.xz
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.zst
gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.zip
Eliminate redundant E_ICON_SIZE_* enumeration.
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 4ecacd2bfe..94fd234f27 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -1012,7 +1012,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", E_ICON_SIZE_DIALOG);
+ filename = e_icon_factory_get_icon_filename ("stock_new-meeting", GTK_ICON_SIZE_DIALOG);
gtk_html_stream_printf (html_stream, "<img src=\"%s\"></td>", filename);
g_free (filename);
@@ -1072,7 +1072,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", E_ICON_SIZE_DIALOG);
+ filename = e_icon_factory_get_icon_filename ("stock_new-meeting", GTK_ICON_SIZE_DIALOG);
gtk_html_stream_printf (html_stream, "<img src=\"%s\"></td>", filename);
g_free (filename);