diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-02-13 02:22:19 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-02-13 02:22:19 +0800 |
commit | 93f47d2d2331fbcdbe9510de43f0440d4c2a8fed (patch) | |
tree | 4d94198daa7cce4dd0828091d71357758758eb9d /shell/main.c | |
parent | 876e40f9057b0ef9948e58b7c2253c53d0388f10 (diff) | |
download | gsoc2013-evolution-93f47d2d2331fbcdbe9510de43f0440d4c2a8fed.tar.gz gsoc2013-evolution-93f47d2d2331fbcdbe9510de43f0440d4c2a8fed.tar.zst gsoc2013-evolution-93f47d2d2331fbcdbe9510de43f0440d4c2a8fed.zip |
** Fixes bug #360946
2007-02-12 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #360946
shell/e-shell-window-commands.c (command_about): Migrate to
GtkAboutDialog, use "evolution" for the icon name, add a website link.
shell/main.c (main): Set default window icon name to "evolution".
svn path=/trunk/; revision=33212
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/shell/main.c b/shell/main.c index d7a6c21abd..b0c393b778 100644 --- a/shell/main.c +++ b/shell/main.c @@ -504,7 +504,6 @@ main (int argc, char **argv) GSList *uri_list; GnomeProgram *program; GOptionContext *context; - GList *icon_list; char *filename; /* Make ElectricFence work. */ @@ -568,12 +567,7 @@ main (int argc, char **argv) e_icon_factory_init (); e_passwords_init(); - icon_list = e_icon_factory_get_icon_list ("stock_mail"); - if (icon_list) { - gtk_window_set_default_icon_list (icon_list); - g_list_foreach (icon_list, (GFunc) g_object_unref, NULL); - g_list_free (icon_list); - } + gtk_window_set_default_icon_name ("evolution"); if (setup_only) exit (0); |