comparison src/blist.h @ 9635:8ad07c6f6522

[gaim-migrate @ 10479] Keep the API docs in sync with my changes from last night. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 01 Aug 2004 18:32:03 +0000
parents c001be3c330e
children db62420a53a2
comparison
equal deleted inserted replaced
9634:10f1d729c415 9635:8ad07c6f6522
525 525
526 /** 526 /**
527 * Returns the alias of a buddy. 527 * Returns the alias of a buddy.
528 * 528 *
529 * @param buddy The buddy whose name will be returned. 529 * @param buddy The buddy whose name will be returned.
530 * @return The alias (if set), server alias (if option is set), or NULL. 530 * @return The alias (if set), server alias (if set and preference
531 * is to display server aliases), or NULL.
531 */ 532 */
532 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy); 533 const char *gaim_buddy_get_alias_only(GaimBuddy *buddy);
533 534
534 535
535 /** 536 /**
536 * Returns the correct name to display for a buddy, taking the contact alias 537 * Returns the correct name to display for a buddy, taking the contact alias
537 * into account. In order of precedence: the buddy's alias; the buddy's 538 * into account. In order of precedence: the buddy's alias; the buddy's
538 * contact alias; the buddy's server alias; the buddy's user name. 539 * contact alias; the buddy's server alias; the buddy's user name.
539 * 540 *
540 * @param buddy The buddy whose name will be returned 541 * @param buddy The buddy whose name will be returned
541 * @return The appropriate name or alias, or "Unknown" 542 * @return The appropriate name or alias, or NULL.
542 * 543 *
543 */ 544 */
544 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy); 545 const char *gaim_buddy_get_contact_alias(GaimBuddy *buddy);
545 546
546 547
548 * Returns the correct name to display for a buddy. In order of precedence: 549 * Returns the correct name to display for a buddy. In order of precedence:
549 * the buddy's alias; the buddy's server alias; the buddy's contact alias; 550 * the buddy's alias; the buddy's server alias; the buddy's contact alias;
550 * the buddy's user name. 551 * the buddy's user name.
551 * 552 *
552 * @param buddy The buddy whose name will be returned. 553 * @param buddy The buddy whose name will be returned.
553 * @return The appropriate name or alias, or "Unknown" 554 * @return The appropriate name or alias, or NULL
554 */ 555 */
555 const char *gaim_buddy_get_alias(GaimBuddy *buddy); 556 const char *gaim_buddy_get_alias(GaimBuddy *buddy);
556 557
557 /** 558 /**
558 * Returns the correct name to display for a blist chat. 559 * Returns the correct name to display for a blist chat.