comparison src/core.c @ 6207:f78a42ef3101

[gaim-migrate @ 6693] bah. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 18 Jul 2003 03:27:01 +0000
parents 0342af6a8b36
children 9ce44a7f9ae7
comparison
equal deleted inserted replaced
6206:dac6d8081524 6207:f78a42ef3101
59 ops = gaim_get_core_ui_ops(); 59 ops = gaim_get_core_ui_ops();
60 60
61 /* Initialize all static protocols. */ 61 /* Initialize all static protocols. */
62 static_proto_init(); 62 static_proto_init();
63 63
64 printf("gaim_prefs_init\n");
65 gaim_prefs_init(); 64 gaim_prefs_init();
66 65
67 if (ops != NULL) { 66 if (ops != NULL) {
68 if (ops->ui_prefs_init != NULL) 67 if (ops->ui_prefs_init != NULL)
69 ops->ui_prefs_init(); 68 ops->ui_prefs_init();
70 69
71 if (ops->debug_ui_init != NULL) 70 if (ops->debug_ui_init != NULL)
72 ops->debug_ui_init(); 71 ops->debug_ui_init();
73 } 72 }
74 73
75 printf("conversation_init\n");
76 gaim_conversation_init(); 74 gaim_conversation_init();
77 gaim_proxy_init(); 75 gaim_proxy_init();
78 gaim_sound_init(); 76 gaim_sound_init();
79 gaim_pounces_init(); 77 gaim_pounces_init();
80 78