diff options
author | JP Rosevear <jpr@novell.com> | 2004-11-26 23:53:57 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-11-26 23:53:57 +0800 |
commit | 869473d7f6d706fa6d3a2a3fd947b5cdfa85ee6c (patch) | |
tree | 49b8b64d41123c9ac8d3dd7728acdbfcc99ae3c9 /composer/e-msg-composer.c | |
parent | bbfd4e8ca408c68ab32e5a04a8cc71b7d42c563c (diff) | |
download | gsoc2013-evolution-869473d7f6d706fa6d3a2a3fd947b5cdfa85ee6c.tar.gz gsoc2013-evolution-869473d7f6d706fa6d3a2a3fd947b5cdfa85ee6c.tar.zst gsoc2013-evolution-869473d7f6d706fa6d3a2a3fd947b5cdfa85ee6c.zip |
get image from icon factory directly
2004-11-26 JP Rosevear <jpr@novell.com>
* e-msg-composer.c (create_composer): get image from icon factory
directly
svn path=/trunk/; revision=28002
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index ec9b3d6b1f..d3cf2f345f 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -3324,7 +3324,6 @@ create_composer (int visible_mask) int vis; GList *icon_list; BonoboControlFrame *control_frame; - GdkPixbuf *attachment_pixbuf; composer = g_object_new (E_TYPE_MSG_COMPOSER, "win_name", _("Compose a message"), NULL); gtk_window_set_title ((GtkWindow *) composer, _("Compose a message")); @@ -3444,11 +3443,9 @@ create_composer (int visible_mask) gtk_misc_set_alignment (GTK_MISC (composer->attachment_expander_num), 1.0, 0.5); expander_hbox = gtk_hbox_new (FALSE, 0); - attachment_pixbuf = e_icon_factory_get_icon ("stock_attach", E_ICON_SIZE_MENU); - composer->attachment_expander_icon = gtk_image_new_from_pixbuf (attachment_pixbuf); + composer->attachment_expander_icon = e_icon_factory_get_image ("stock_attach", E_ICON_SIZE_MENU); gtk_misc_set_alignment (GTK_MISC (composer->attachment_expander_icon), 1, 0.5); gtk_widget_set_size_request (composer->attachment_expander_icon, 100, -1); - g_object_unref (attachment_pixbuf); gtk_box_pack_start (GTK_BOX (expander_hbox), composer->attachment_expander_label, TRUE, TRUE, 0); |