# HG changeset patch # User Christian Hammond # Date 1065059846 0 # Node ID 7bee4be16385d4fdd11735bce6d893bac0a5da09 # Parent c47633e9e2a4979b4e2fd32e4347bde001368809 [gaim-migrate @ 7682] parse_toc_buddy_list() is now a static function in blist.c. It's the last core function exposed in a header file that isn't in a gaim namespace. committer: Tailor Script diff -r c47633e9e2a4 -r 7bee4be16385 src/blist.c --- a/src/blist.c Thu Oct 02 01:56:21 2003 +0000 +++ b/src/blist.c Thu Oct 02 01:57:26 2003 +0000 @@ -1458,7 +1458,7 @@ } } -void parse_toc_buddy_list(GaimAccount *account, char *config) +static void parse_toc_buddy_list(GaimAccount *account, char *config) { char *c; char current[256]; diff -r c47633e9e2a4 -r 7bee4be16385 src/blist.h --- a/src/blist.h Thu Oct 02 01:56:21 2003 +0000 +++ b/src/blist.h Thu Oct 02 01:57:26 2003 +0000 @@ -664,15 +664,6 @@ void gaim_blist_save(); /** - * Parses the toc-style buddy list used in older versions of Gaim and for SSI in toc.c - * - * @param account This is the account that the buddies and groups from config will get added to - * @param config This is the toc-style buddy list data - */ -void parse_toc_buddy_list(GaimAccount *account, char *config); - - -/** * Loads the buddy list from ~/.gaim/blist.xml. */ void gaim_blist_load();