comparison libpurple/account.h @ 29742:422889fb57e0

propagate from branch 'im.pidgin.pidgin' (head 9028ac0daaa1f7e565726fa39aca22ce7d3ecc49) to branch 'im.pidgin.pidgin.next.minor' (head debffa49382d07f0934a2b22a035940cb8f7892f)
author Paul Aurich <paul@darkrain42.org>
date Thu, 04 Feb 2010 05:30:35 +0000
parents 0aac63e8489f
children b983db2b01f5
comparison
equal deleted inserted replaced
29354:86ee7772936f 29742:422889fb57e0
628 * @return The connection. 628 * @return The connection.
629 */ 629 */
630 PurpleConnection *purple_account_get_connection(const PurpleAccount *account); 630 PurpleConnection *purple_account_get_connection(const PurpleAccount *account);
631 631
632 /** 632 /**
633 * Returns a name for this account appropriate for display to the user. In
634 * order of preference: the account's alias; the contact or buddy alias (if
635 * the account exists on its own buddy list); the connection's display name;
636 * the account's username.
637 *
638 * @param account The account.
639 *
640 * @return The name to display.
641 *
642 * @since 2.7.0
643 */
644 const gchar *purple_account_get_name_for_display(const PurpleAccount *account);
645
646 /**
633 * Returns whether or not this account should save its password. 647 * Returns whether or not this account should save its password.
634 * 648 *
635 * @param account The account. 649 * @param account The account.
636 * 650 *
637 * @return @c TRUE if it should remember the password. 651 * @return @c TRUE if it should remember the password.