# HG changeset patch # User Ethan Blanton # Date 1070924135 0 # Node ID 2e6e269504a45269b3c076ea3e41a44b03e78e63 # Parent 10010e717354efd04e7f4d7bbf2b6d160d9da307 [gaim-migrate @ 8458] Add a function definition which pmiller9 kindly pointed out was missing, and remove a masturbatory variable and statement from gtkblist.c. committer: Tailor Script diff -r 10010e717354 -r 2e6e269504a4 src/blist.h --- a/src/blist.h Mon Dec 08 22:54:30 2003 +0000 +++ b/src/blist.h Mon Dec 08 22:55:35 2003 +0000 @@ -762,6 +762,14 @@ const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); /** + * Removes a named setting from a blist node + * + * @param node The node from which to remove the setting + * @param key The name of the setting + */ +void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key); + +/** * Associates some data with the group in the xml buddy list * * @param g The group the data is associated with diff -r 10010e717354 -r 2e6e269504a4 src/gtkblist.c --- a/src/gtkblist.c Mon Dec 08 22:54:30 2003 +0000 +++ b/src/gtkblist.c Mon Dec 08 22:55:35 2003 +0000 @@ -1114,7 +1114,6 @@ GaimBuddy *buddy; GaimConnection *gc; GValue val = {0}; - const char *prpl_id; GString *str; const char *protocol; char *mime_str; @@ -1146,8 +1145,6 @@ buddy = (GaimBuddy *)node; } - prpl_id = gaim_account_get_protocol_id(buddy->account); - gc = gaim_account_get_connection(buddy->account); if (gc == NULL)