# HG changeset patch # User Mark Doliner # Date 1093194652 0 # Node ID 34b468bdc1c5781618e104958a92df080b8d2b1b # Parent 5206fb21e358d7f37dff40567f687d34c36fb9cb [gaim-migrate @ 10690] Remove html_logger_create and txt_logger create I didn't remove the create function from the struct thingy because it seems plausible that a logging plugin would want to have a create function, and because it would break any external logging plugins committer: Tailor Script diff -r 5206fb21e358 -r 34b468bdc1c5 src/log.c --- a/src/log.c Sun Aug 22 16:16:46 2004 +0000 +++ b/src/log.c Sun Aug 22 17:10:52 2004 +0000 @@ -667,13 +667,9 @@ return g_strdup_printf(_("Could not read file: %s"), data->path); } -static void html_logger_create(GaimLog *log) -{ -} - static GaimLogLogger html_logger = { N_("HTML"), "html", - html_logger_create, + NULL, html_logger_write, html_logger_finalize, html_logger_list, @@ -803,13 +799,9 @@ return g_strdup_printf(_("Could not read file: %s"), data->path); } -static void txt_logger_create(GaimLog *log) -{ -} - static GaimLogLogger txt_logger = { N_("Plain text"), "txt", - txt_logger_create, + NULL, txt_logger_write, txt_logger_finalize, txt_logger_list,