comparison src/gtkconv.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 55356a29cdd1
children 90be432e8385
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
6216 void 6216 void
6217 gaim_gtk_conversations_init(void) 6217 gaim_gtk_conversations_init(void)
6218 { 6218 {
6219 void *handle = gaim_gtk_conversations_get_handle(); 6219 void *handle = gaim_gtk_conversations_get_handle();
6220 6220
6221 gaim_debug_register_category("gtkconv");
6222
6223 /* Conversations */ 6221 /* Conversations */
6224 gaim_prefs_add_none("/gaim/gtk/conversations"); 6222 gaim_prefs_add_none("/gaim/gtk/conversations");
6225 gaim_prefs_add_bool("/gaim/gtk/conversations/close_on_tabs", TRUE); 6223 gaim_prefs_add_bool("/gaim/gtk/conversations/close_on_tabs", TRUE);
6226 gaim_prefs_add_bool("/gaim/gtk/conversations/send_formatting", FALSE); 6224 gaim_prefs_add_bool("/gaim/gtk/conversations/send_formatting", FALSE);
6227 gaim_prefs_add_bool("/gaim/gtk/conversations/send_bold", FALSE); 6225 gaim_prefs_add_bool("/gaim/gtk/conversations/send_bold", FALSE);
6318 void 6316 void
6319 gaim_gtk_conversations_uninit(void) 6317 gaim_gtk_conversations_uninit(void)
6320 { 6318 {
6321 gaim_prefs_disconnect_by_handle(gaim_gtk_conversations_get_handle()); 6319 gaim_prefs_disconnect_by_handle(gaim_gtk_conversations_get_handle());
6322 gaim_signals_unregister_by_instance(gaim_gtk_conversations_get_handle()); 6320 gaim_signals_unregister_by_instance(gaim_gtk_conversations_get_handle());
6323 6321 }
6324 gaim_debug_unregister_category("gtkconv");
6325 }