comparison src/blist.h @ 7811:2e6e269504a4

[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 <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Mon, 08 Dec 2003 22:55:35 +0000
parents 1d0314b99747
children 02cb9284782e
comparison
equal deleted inserted replaced
7810:10010e717354 7811:2e6e269504a4
760 * @return The value, or NULL if there is no setting 760 * @return The value, or NULL if there is no setting
761 */ 761 */
762 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); 762 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key);
763 763
764 /** 764 /**
765 * Removes a named setting from a blist node
766 *
767 * @param node The node from which to remove the setting
768 * @param key The name of the setting
769 */
770 void gaim_blist_node_remove_setting(GaimBlistNode *node, const char *key);
771
772 /**
765 * Associates some data with the group in the xml buddy list 773 * Associates some data with the group in the xml buddy list
766 * 774 *
767 * @param g The group the data is associated with 775 * @param g The group the data is associated with
768 * @param key The key used to retrieve the data 776 * @param key The key used to retrieve the data
769 * @param value The data to set 777 * @param value The data to set