diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-08-13 23:29:35 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-13 23:29:35 +0800 |
commit | fcc193d767c44893041713c3bc9176738040acd1 (patch) | |
tree | 50cafb0d30f14d890d909113e40204a902cf6a6e /e-util/e-gui-utils.c | |
parent | 9e618a5341fbb59036d0d0068d8b5467a6836742 (diff) | |
download | gsoc2013-evolution-fcc193d767c44893041713c3bc9176738040acd1.tar.gz gsoc2013-evolution-fcc193d767c44893041713c3bc9176738040acd1.tar.zst gsoc2013-evolution-fcc193d767c44893041713c3bc9176738040acd1.zip |
Remove this unused function.
2008-08-13 Matthew Barnes <mbarnes@redhat.com>
* e-util/e-gui-utils.c (e_create_image_widget):
Remove this unused function.
* e-util/e-util.h: Cosmetic cleanups.
svn path=/trunk/; revision=35980
Diffstat (limited to 'e-util/e-gui-utils.c')
-rw-r--r-- | e-util/e-gui-utils.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/e-util/e-gui-utils.c b/e-util/e-gui-utils.c index c4fef1ba16..cff2b500b0 100644 --- a/e-util/e-gui-utils.c +++ b/e-util/e-gui-utils.c @@ -52,30 +52,3 @@ e_icon_for_mime_type (const char *mime_type, int size_hint) return pixbuf; } - -GtkWidget *e_create_image_widget(gchar *name, - gchar *string1, gchar *string2, - gint int1, gint int2) -{ - GtkWidget *alignment = NULL; - GtkWidget *w; - - if (string1) { - w = gtk_image_new_from_icon_name ( - string1, GTK_ICON_SIZE_DIALOG); - - gtk_misc_set_alignment (GTK_MISC (w), 0.5, 0.5); - - alignment = gtk_widget_new(gtk_alignment_get_type(), - "child", w, - "xalign", (double) 0, - "yalign", (double) 0, - "xscale", (double) 0, - "yscale", (double) 0, - NULL); - - gtk_widget_show_all (alignment); - } - - return alignment; -} |