diff src/gtkmain.c @ 10574:77ef3f2f0df8

[gaim-migrate @ 11966] Leak fixes, round 3. Also, fix find in the log viewer to find in all logs, not just every-other-one-you-select. Plus some other minor tweaks. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 05 Feb 2005 17:59:20 +0000
parents 6a20307ef8dc
children 59a2807e10bb
line wrap: on
line diff
--- a/src/gtkmain.c	Fri Feb 04 23:42:33 2005 +0000
+++ b/src/gtkmain.c	Sat Feb 05 17:59:20 2005 +0000
@@ -54,6 +54,7 @@
 #include "gtkprivacy.h"
 #include "gtkrequest.h"
 #include "gtkroomlist.h"
+#include "gtksavedstatuses.h"
 #include "gtksound.h"
 #include "gtkutils.h"
 #include "gtkstock.h"
@@ -258,6 +259,7 @@
 	gaim_gtk_prefs_init();
 	gaim_gtk_account_init();
 	gaim_gtk_blist_init();
+	gaim_gtk_status_init();
 	gaim_gtk_conversations_init();
 	gaim_gtk_pounces_init();
 	gaim_gtk_privacy_init();
@@ -282,6 +284,12 @@
 	/* Save the plugins we have loaded for next time. */
 	gaim_gtk_plugins_save();
 
+	/* Uninit */
+	gaim_gtk_conversations_uninit();
+	gaim_gtk_status_uninit();
+	gaim_gtk_blist_uninit();
+	gaim_gtk_account_uninit();
+
 	/* and end it all... */
 	gtk_main_quit();
 }