aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-timezone-entry.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/e-timezone-entry.c')
-rw-r--r--calendar/gui/e-timezone-entry.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c
index 8e4c65e64d..4004ae2cb8 100644
--- a/calendar/gui/e-timezone-entry.c
+++ b/calendar/gui/e-timezone-entry.c
@@ -110,7 +110,6 @@ e_timezone_entry_init (ETimezoneEntry *tentry)
{
ETimezoneEntryPrivate *priv;
GtkWidget *gtk_image;
- GdkPixbuf *gdk_pixbuf;
AtkObject *a11y;
tentry->priv = priv = g_new0 (ETimezoneEntryPrivate, 1);
@@ -134,12 +133,9 @@ e_timezone_entry_init (ETimezoneEntry *tentry)
atk_object_set_name (a11y, _("Timezone Button"));
}
- gdk_pixbuf = e_icon_factory_get_icon ("stock_timezone", E_ICON_SIZE_BUTTON);
- gtk_image = gtk_image_new_from_pixbuf (gdk_pixbuf);
+ gtk_image = e_icon_factory_get_image ("stock_timezone", E_ICON_SIZE_BUTTON);
gtk_container_add (GTK_CONTAINER (priv->button), gtk_image);
gtk_widget_show (gtk_image);
-
- g_object_unref (gdk_pixbuf);
}