comparison src/blist.h @ 8735:92cbf9713795

[gaim-migrate @ 9490] Patch by Jonathan Champ to corect the vairous speling mistakes we hav e in the coments and documentaion. Thansk Jonathan! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 21 Apr 2004 01:34:26 +0000
parents 36b043fe2740
children e3f4657fa555
comparison
equal deleted inserted replaced
8734:407c122d6191 8735:92cbf9713795
721 * @param value The value to set 721 * @param value The value to set
722 */ 722 */
723 void gaim_blist_node_set_bool(GaimBlistNode *node, const char *key, gboolean value); 723 void gaim_blist_node_set_bool(GaimBlistNode *node, const char *key, gboolean value);
724 724
725 /** 725 /**
726 * Retreives a named boolean setting from a node in the buddy list 726 * Retrieves a named boolean setting from a node in the buddy list
727 * 727 *
728 * @param node The node to retreive the data from 728 * @param node The node to retrieve the data from
729 * @param key The identifier of the data 729 * @param key The identifier of the data
730 * 730 *
731 * @return The value, or FALSE if there is no setting 731 * @return The value, or FALSE if there is no setting
732 */ 732 */
733 gboolean gaim_blist_node_get_bool(GaimBlistNode *node, const char *key); 733 gboolean gaim_blist_node_get_bool(GaimBlistNode *node, const char *key);
740 * @param value The value to set 740 * @param value The value to set
741 */ 741 */
742 void gaim_blist_node_set_int(GaimBlistNode *node, const char *key, int value); 742 void gaim_blist_node_set_int(GaimBlistNode *node, const char *key, int value);
743 743
744 /** 744 /**
745 * Retreives a named integer setting from a node in the buddy list 745 * Retrieves a named integer setting from a node in the buddy list
746 * 746 *
747 * @param node The node to retreive the data from 747 * @param node The node to retrieve the data from
748 * @param key The identifier of the data 748 * @param key The identifier of the data
749 * 749 *
750 * @return The value, or 0 if there is no setting 750 * @return The value, or 0 if there is no setting
751 */ 751 */
752 int gaim_blist_node_get_int(GaimBlistNode *node, const char *key); 752 int gaim_blist_node_get_int(GaimBlistNode *node, const char *key);
760 */ 760 */
761 void gaim_blist_node_set_string(GaimBlistNode *node, const char *key, 761 void gaim_blist_node_set_string(GaimBlistNode *node, const char *key,
762 const char *value); 762 const char *value);
763 763
764 /** 764 /**
765 * Retreives a named string setting from a node in the buddy list 765 * Retrieves a named string setting from a node in the buddy list
766 * 766 *
767 * @param node The node to retreive the data from 767 * @param node The node to retrieve the data from
768 * @param key The identifier of the data 768 * @param key The identifier of the data
769 * 769 *
770 * @return The value, or NULL if there is no setting 770 * @return The value, or NULL if there is no setting
771 */ 771 */
772 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key); 772 const char *gaim_blist_node_get_string(GaimBlistNode *node, const char *key);