diff src/main.c @ 6019:272c761c52e3

[gaim-migrate @ 6469] So Decklin sent me a patch to fix the problem with setting profiles, and then later that day, before I got a shot at it, KingAnt fixed it himself. But Decklin's fix is better, so here it is, hand-merged with love. KingAnt also points out that Decklin Foster is a cool name. Decklin also realized (and fixed) that we were initializing static protocols after importing prefs, causing the import to fail. Thanks, Decklin. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sat, 05 Jul 2003 01:49:07 +0000
parents 5cd7a10c6ade
children 547ba881bc7e
line wrap: on
line diff
--- a/src/main.c	Fri Jul 04 21:29:55 2003 +0000
+++ b/src/main.c	Sat Jul 05 01:49:07 2003 +0000
@@ -838,6 +838,8 @@
 
 	/* This has to be done before the debug stuff. */
 	gaim_gtk_stock_init();
+	
+	static_proto_init();
 
 	gaim_prefs_init();
 	gaim_gtk_prefs_init();
@@ -921,8 +923,6 @@
 	if (gaim_prefs_get_bool("/gaim/gtk/debug/enabled"))
 		gaim_gtk_debug_window_show();
 
-	static_proto_init();
-
 	/* deal with --login */
 	if (opt_login) {
 		dologin_ret = dologin_named(opt_login_arg);