aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@novell.com>2004-06-19 05:19:39 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-06-19 05:19:39 +0800
commit6ab671872b2cf29fd5b3d20068d12a95d76abccc (patch)
treeaa025504ca7f0aa6e017a69353532bac7ca01fdd /shell/main.c
parentd8fa73f1b70b8d7da8a374126a9c81eb87fe68a9 (diff)
downloadgsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar.gz
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar.bz2
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar.lz
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar.xz
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.tar.zst
gsoc2013-evolution-6ab671872b2cf29fd5b3d20068d12a95d76abccc.zip
Remove AUTOHELP option since GNOME adds this itself. Fixes bug #60374.
2004-06-18 Jeffrey Stedfast <fejj@novell.com> * main.c (main): Remove AUTOHELP option since GNOME adds this itself. Fixes bug #60374. (main): Before exiting from main(), call shutdown() routines. svn path=/trunk/; revision=26431
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/main.c b/shell/main.c
index e6a1a4dc70..b06b9b7c33 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -475,7 +475,6 @@ main (int argc, char **argv)
N_("Send the debugging output of all components to a file."), NULL },
{ "setup-only", '\0', POPT_ARG_NONE | POPT_ARGFLAG_DOC_HIDDEN,
&setup_only, 0, NULL, NULL },
- POPT_AUTOHELP
{ NULL, '\0', 0, NULL, 0, NULL, NULL }
};
#ifdef DEVELOPMENT
@@ -584,6 +583,9 @@ main (int argc, char **argv)
bonobo_main ();
e_icon_factory_shutdown ();
+ g_object_unref (program);
+ gnome_sound_shutdown ();
+ e_cursors_shutdown ();
return 0;
}