diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-08-19 01:06:59 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-08-19 01:19:00 +0800 |
commit | 92aee43c95f51aa828c34c828c18c38a3e1fdcb6 (patch) | |
tree | 02630cf84560db78a3b6de632e63df081463d8c4 | |
parent | 5b7271c8f3c349637516c6b5bdb442aa9a480925 (diff) | |
download | gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar.gz gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar.bz2 gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar.lz gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar.xz gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.tar.zst gsoc2013-empathy-92aee43c95f51aa828c34c828c18c38a3e1fdcb6.zip |
Use new API in EmpathyAccountsDialog
-rw-r--r-- | src/empathy-accounts-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index c41763d90..c753a9f20 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -310,7 +310,7 @@ accounts_dialog_update_status_infobar (EmpathyAccountsDialog *dialog, gchar *message; message = g_strdup_printf (_("Offline — %s"), - empathy_account_get_error_message (account)); + empathy_account_get_error_message (account, NULL)); gtk_info_bar_set_message_type (GTK_INFO_BAR (priv->infobar), GTK_MESSAGE_WARNING); @@ -322,7 +322,7 @@ accounts_dialog_update_status_infobar (EmpathyAccountsDialog *dialog, gchar *message; message = g_strdup_printf (_("Disconnected — %s"), - empathy_account_get_error_message (account)); + empathy_account_get_error_message (account, NULL)); gtk_info_bar_set_message_type (GTK_INFO_BAR (priv->infobar), GTK_MESSAGE_ERROR); |