From: Xavier Claessens Date: Sat, 19 Jul 2008 16:59:21 +0000 (+0000) Subject: Display an error message if reason is != _REQUESTED instead of > X-Git-Url: https://git.0d.be/?p=empathy.git;a=commitdiff_plain;h=e8c3fd04f8be77b982ba5b7311a002df895fb2a5 Display an error message if reason is != _REQUESTED instead of > svn path=/trunk/; revision=1265 --- diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c index f00139be..dbba3b46 100644 --- a/src/empathy-main-window.c +++ b/src/empathy-main-window.c @@ -1110,10 +1110,13 @@ main_window_status_changed_cb (MissionControl *mc, account = mc_account_lookup (unique_name); if (status == TP_CONNECTION_STATUS_DISCONNECTED && - reason > TP_CONNECTION_STATUS_REASON_REQUESTED) { + reason != TP_CONNECTION_STATUS_REASON_REQUESTED) { const gchar *message; switch (reason) { + case TP_CONNECTION_STATUS_REASON_NONE_SPECIFIED: + message = _("No error specified"); + break; case TP_CONNECTION_STATUS_REASON_NETWORK_ERROR: message = _("Network error"); break;