comparison src/account.c @ 11256:bb0d7b719af2

[gaim-migrate @ 13430] I give you regex filtering in the debug window. We keep a buffer of all the text, so when unpausing all the messages that were output when paused will be displayed, as well as when you change the filter. This _should_ be alright on systems that don't have regex.h but I haven't gotten anyone to test it recently, if it's busted, just #ifdef HAVE_REGEX_H it. committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Sat, 13 Aug 2005 22:09:34 +0000
parents ad9a61894d9b
children f24541048a64
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
2044 void 2044 void
2045 gaim_accounts_init(void) 2045 gaim_accounts_init(void)
2046 { 2046 {
2047 void *handle = gaim_accounts_get_handle(); 2047 void *handle = gaim_accounts_get_handle();
2048 2048
2049 gaim_debug_register_category("account");
2050
2051 gaim_signal_register(handle, "account-connecting", 2049 gaim_signal_register(handle, "account-connecting",
2052 gaim_marshal_VOID__POINTER, NULL, 1, 2050 gaim_marshal_VOID__POINTER, NULL, 1,
2053 gaim_value_new(GAIM_TYPE_SUBTYPE, 2051 gaim_value_new(GAIM_TYPE_SUBTYPE,
2054 GAIM_SUBTYPE_ACCOUNT)); 2052 GAIM_SUBTYPE_ACCOUNT));
2055 2053
2100 save_timer = 0; 2098 save_timer = 0;
2101 sync_accounts(); 2099 sync_accounts();
2102 } 2100 }
2103 2101
2104 gaim_signals_unregister_by_instance(gaim_accounts_get_handle()); 2102 gaim_signals_unregister_by_instance(gaim_accounts_get_handle());
2105 2103 }
2106 gaim_debug_unregister_category("account");
2107 }