diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-24 23:54:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-25 00:43:11 +0800 |
commit | 2393a5d17e92435cb3d7726b04ff6f4a5c27c8db (patch) | |
tree | c69db32dede1ce4e8bc233dc7c5ef83799b258dd /plugins/groupwise-features | |
parent | 7702ac84d7e02093881d5a139398b1615e4070ac (diff) | |
download | gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.gz gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.tar.zst gsoc2013-evolution-2393a5d17e92435cb3d7726b04ff6f4a5c27c8db.zip |
Eliminate redundant E_ICON_SIZE_* enumeration.
Diffstat (limited to 'plugins/groupwise-features')
-rw-r--r-- | plugins/groupwise-features/proxy-login.c | 2 | ||||
-rw-r--r-- | plugins/groupwise-features/proxy.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/groupwise-features/proxy-login.c b/plugins/groupwise-features/proxy-login.c index 64653a073a..012a0df6e1 100644 --- a/plugins/groupwise-features/proxy-login.c +++ b/plugins/groupwise-features/proxy-login.c @@ -442,7 +442,7 @@ proxy_login_update_tree (void) char *proxy_email; EGwConnection *cnc; proxyLoginPrivate *priv = pld->priv; - gchar *file_name = e_icon_factory_get_icon_filename ("stock_person", E_ICON_SIZE_DIALOG); + gchar *file_name = e_icon_factory_get_icon_filename ("stock_person", GTK_ICON_SIZE_DIALOG); broken_image = file_name ? gdk_pixbuf_new_from_file (file_name, NULL) : NULL; cnc = proxy_login_get_cnc (pld->account, priv->main ? (GTK_WINDOW (gtk_widget_get_toplevel (priv->main))) : NULL); diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c index 8bf212ee24..60be390eb3 100644 --- a/plugins/groupwise-features/proxy.c +++ b/plugins/groupwise-features/proxy.c @@ -602,7 +602,7 @@ proxy_update_tree_view (EAccount *account) GdkPixbuf *broken_image = NULL; GList *list_iter; proxyHandler *aclInstance; - gchar *file_name = e_icon_factory_get_icon_filename ("stock_person", E_ICON_SIZE_DIALOG); + gchar *file_name = e_icon_factory_get_icon_filename ("stock_person", GTK_ICON_SIZE_DIALOG); proxyDialogPrivate *priv; prd = g_object_get_data ((GObject *)account, "prd"); |