aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-url-entry.c
diff options
context:
space:
mode:
authorMichael Monreal <mmonreal@svn.gnome.org>2007-10-31 18:42:19 +0800
committerMichael Monreal <mmonreal@src.gnome.org>2007-10-31 18:42:19 +0800
commit53c075e4c544f95de4a55dae1c73621e165c08eb (patch)
tree3da1f94b53d3be0f216b6e083b5f75e4c09b9c3c /widgets/misc/e-url-entry.c
parentc4981ea30ce9915c5be9f5e819b03558d50f55df (diff)
downloadgsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar.gz
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar.bz2
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar.lz
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar.xz
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.tar.zst
gsoc2013-evolution-53c075e4c544f95de4a55dae1c73621e165c08eb.zip
** Fix for bug #483785
2007-10-31 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #483785 * e-url-entry.c: (init): Use go-jump icon instead of stock_connect-to-url to get rid of deprecated icons from gnome-icon-theme. svn path=/trunk/; revision=34463
Diffstat (limited to 'widgets/misc/e-url-entry.c')
-rw-r--r--widgets/misc/e-url-entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-url-entry.c b/widgets/misc/e-url-entry.c
index 648603b33b..59469cc6a0 100644
--- a/widgets/misc/e-url-entry.c
+++ b/widgets/misc/e-url-entry.c
@@ -105,7 +105,7 @@ init (EUrlEntry *url_entry)
gtk_widget_set_sensitive (priv->button, FALSE);
gtk_box_pack_start (GTK_BOX (url_entry), priv->button, FALSE, FALSE, 0);
atk_object_set_name (gtk_widget_get_accessible (priv->button), _("Click here to go to URL"));
- pixmap = e_icon_factory_get_image ("stock_connect-to-url", E_ICON_SIZE_BUTTON);
+ pixmap = e_icon_factory_get_image ("go-jump", E_ICON_SIZE_BUTTON);
gtk_container_add (GTK_CONTAINER (priv->button), pixmap);
gtk_widget_show (pixmap);