comparison libpurple/account.h @ 29712:d5fe33c3a765

propagate from branch 'im.pidgin.pidgin' (head 42a8485e73af5f2091d307b51c09dded94eceb24) to branch 'im.pidgin.pidgin.next.minor' (head 4edcf8da14be654127117da5af0cbdd7a0616439)
author John Bailey <rekkanoryo@rekkanoryo.org>
date Tue, 17 Nov 2009 07:33:47 +0000
parents 0aac63e8489f
children b983db2b01f5
comparison
equal deleted inserted replaced
28963:546e870dc506 29712:d5fe33c3a765
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.