comparison src/core.c @ 10479:12460aa2c820

[gaim-migrate @ 11766] grim made me do it committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 06 Jan 2005 06:16:50 +0000
parents 6a20307ef8dc
children 1a97d5e88d12
comparison
equal deleted inserted replaced
10478:d497f3a2686f 10479:12460aa2c820
76 gaim_prefs_init(); 76 gaim_prefs_init();
77 77
78 /* Initialize all static protocols. */ 78 /* Initialize all static protocols. */
79 static_proto_init(); 79 static_proto_init();
80 80
81 /* Since plugins get probed so early we should probably initialize their
82 * subsystem right away too.
83 */
84 gaim_plugins_init();
81 gaim_plugins_probe(NULL); 85 gaim_plugins_probe(NULL);
82 86
83 if (ops != NULL) 87 if (ops != NULL)
84 { 88 {
85 if (ops->ui_prefs_init != NULL) 89 if (ops->ui_prefs_init != NULL)
143 147
144 ops = gaim_core_get_ui_ops(); 148 ops = gaim_core_get_ui_ops();
145 if (ops != NULL && ops->quit != NULL) 149 if (ops != NULL && ops->quit != NULL)
146 ops->quit(); 150 ops->quit();
147 151
152 gaim_plugins_uninit();
148 gaim_signals_uninit(); 153 gaim_signals_uninit();
149 154
150 if (core->ui != NULL) { 155 if (core->ui != NULL) {
151 g_free(core->ui); 156 g_free(core->ui);
152 core->ui = NULL; 157 core->ui = NULL;