comparison plugins/win32/winprefs/winprefs.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 50224ac8184d
children 17142948653e
comparison
equal deleted inserted replaced
11255:1b1d63602d77 11256:bb0d7b719af2
327 /* 327 /*
328 * EXPORTED FUNCTIONS 328 * EXPORTED FUNCTIONS
329 */ 329 */
330 330
331 gboolean plugin_load(GaimPlugin *plugin) { 331 gboolean plugin_load(GaimPlugin *plugin) {
332 gaim_debug_register_category("gtkappbar");
333 gaim_debug_register_category(WINPREFS_PLUGIN_ID);
334
335 /* Find out how to go blinky */ 332 /* Find out how to go blinky */
336 load_winver_specific_procs(); 333 load_winver_specific_procs();
337 334
338 handle = plugin; 335 handle = plugin;
339 336
359 } 356 }
360 357
361 gboolean plugin_unload(GaimPlugin *plugin) { 358 gboolean plugin_unload(GaimPlugin *plugin) {
362 blist_set_dockable(FALSE); 359 blist_set_dockable(FALSE);
363 blist_set_ontop(FALSE); 360 blist_set_ontop(FALSE);
364
365 gaim_debug_unregister_category("gtkappbar");
366 gaim_debug_unregister_category(WINPREFS_PLUGIN_ID);
367 361
368 return TRUE; 362 return TRUE;
369 } 363 }
370 364
371 static GtkWidget* get_config_frame(GaimPlugin *plugin) { 365 static GtkWidget* get_config_frame(GaimPlugin *plugin) {