aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2010-08-19 01:06:59 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2010-08-19 01:19:00 +0800
commit92aee43c95f51aa828c34c828c18c38a3e1fdcb6 (patch)
tree02630cf84560db78a3b6de632e63df081463d8c4 /src
parent5b7271c8f3c349637516c6b5bdb442aa9a480925 (diff)
downloadgsoc2013-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
Diffstat (limited to 'src')
-rw-r--r--src/empathy-accounts-dialog.c4
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);