Mercurial > pidgin
changeset 7812:02cb9284782e
[gaim-migrate @ 8459]
<datallah> faceprint: did you see the (beautiful) doxygen patch that i sent you a few days ago for blist.h ?
<faceprint> datallah: i did
<datallah> did you not like it?
<faceprint> datallah: i suppose i'll apply it, since I have no idea what it does
<aubin> lol
<datallah> well.. run doxygen and see :)
<datallah> its pretty
<faceprint> i don't do doxygen
<datallah> aha
<faceprint> if I need to see documentation, I use vi
<datallah> ... yeah yeah :)
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Mon, 08 Dec 2003 23:51:06 +0000 |
parents | 2e6e269504a4 |
children | 8bba34c04c9d |
files | src/blist.h |
diffstat | 1 files changed, 18 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/blist.h Mon Dec 08 22:55:35 2003 +0000 +++ b/src/blist.h Mon Dec 08 23:51:06 2003 +0000 @@ -775,6 +775,9 @@ * @param g The group the data is associated with * @param key The key used to retrieve the data * @param value The data to set + * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() + * and gaim_blist_node_set_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ void gaim_group_set_setting(GaimGroup *g, const char *key, const char *value); @@ -784,6 +787,9 @@ * @param g The group to retrieve data from * @param key The key to retrieve the data with * @return The associated data or NULL if no data is associated + * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() + * and gaim_blist_node_get_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ const char *gaim_group_get_setting(GaimGroup *g, const char *key); @@ -793,6 +799,9 @@ * @param c The chat the data is associated with * @param key The key used to retrieve the data * @param value The data to set + * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() + * and gaim_blist_node_set_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ void gaim_chat_set_setting(GaimChat *c, const char *key, const char *value); @@ -803,6 +812,9 @@ * @param key The key to retrieve the data with * * @return The associated data or NULL if no data is associated + * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() + * and gaim_blist_node_get_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ const char *gaim_chat_get_setting(GaimChat *c, const char *key); @@ -812,6 +824,9 @@ * @param b The buddy the data is associated with * @param key The key used to retrieve the data * @param value The data to set + * @deprecated Replaced by gaim_blist_node_set_bool(), gaim_blist_node_set_int() + * and gaim_blist_node_set_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ void gaim_buddy_set_setting(GaimBuddy *b, const char *key, const char *value); @@ -821,6 +836,9 @@ * @param b The buddy to retrieve data from * @param key The key to retrieve the data with * @return The associated data or NULL if no data is associated + * @deprecated Replaced by gaim_blist_node_get_bool(), gaim_blist_node_get_int() + * and gaim_blist_node_get_string() to enable types and consolidate functionality. + * This function is scheduled to be removed in the near future. */ const char *gaim_buddy_get_setting(GaimBuddy *b, const char *key);