comparison src/gtkaccount.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 0c2d1b4b1351
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
2514 } 2514 }
2515 2515
2516 void 2516 void
2517 gaim_gtk_account_init(void) 2517 gaim_gtk_account_init(void)
2518 { 2518 {
2519 gaim_debug_register_category("buddyicon");
2520
2521 gaim_prefs_add_none("/gaim/gtk/accounts"); 2519 gaim_prefs_add_none("/gaim/gtk/accounts");
2522 gaim_prefs_add_none("/gaim/gtk/accounts/dialog"); 2520 gaim_prefs_add_none("/gaim/gtk/accounts/dialog");
2523 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/width", 550); 2521 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/width", 550);
2524 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/height", 250); 2522 gaim_prefs_add_int("/gaim/gtk/accounts/dialog/height", 250);
2525 2523
2531 2529
2532 void 2530 void
2533 gaim_gtk_account_uninit(void) 2531 gaim_gtk_account_uninit(void)
2534 { 2532 {
2535 gaim_signals_unregister_by_instance(gaim_gtk_account_get_handle()); 2533 gaim_signals_unregister_by_instance(gaim_gtk_account_get_handle());
2536 2534 }
2537 gaim_debug_unregister_category("buddyicon");
2538 }