comparison libpurple/blist.h @ 32049:821942586292

purple_contact_set_alias() is deprecated, and can be removed for 3.0.0.
author andrew.victor@mxit.com
date Mon, 05 Sep 2011 20:02:49 +0000
parents 521cb9430f22
children 38ce2e217fcb
comparison
equal deleted inserted replaced
32048:521cb9430f22 32049:821942586292
760 * @param contact The contact 760 * @param contact The contact
761 * @return The highest priority buddy 761 * @return The highest priority buddy
762 */ 762 */
763 PurpleBuddy *purple_contact_get_priority_buddy(PurpleContact *contact); 763 PurpleBuddy *purple_contact_get_priority_buddy(PurpleContact *contact);
764 764
765 #if !(defined PURPLE_DISABLE_DEPRECATED) || (defined _PURPLE_BLIST_C_)
766 /**
767 * Sets the alias for a contact.
768 *
769 * @param contact The contact
770 * @param alias The alias to set, or NULL to unset
771 *
772 * @deprecated Use purple_blist_alias_contact() instead.
773 */
774 void purple_contact_set_alias(PurpleContact *contact, const char *alias);
775 #endif
776
777 /** 765 /**
778 * Gets the alias for a contact. 766 * Gets the alias for a contact.
779 * 767 *
780 * @param contact The contact 768 * @param contact The contact
781 * @return The alias, or NULL if it is not set. 769 * @return The alias, or NULL if it is not set.