aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-02-10 21:06:19 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-02-10 21:06:19 +0800
commitccb3964865cf65dcca05a145ceac91137746c331 (patch)
treeb1a67584ee7905566a995ce8be855a10275efe63
parent3a3b095dd0f76eec019f424105e40d3d344a59e2 (diff)
downloadgsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar.gz
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar.bz2
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar.lz
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar.xz
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.tar.zst
gsoc2013-empathy-ccb3964865cf65dcca05a145ceac91137746c331.zip
Use the 'phone' icon for the 'sms' protocol
-rw-r--r--libempathy/empathy-utils.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c
index e2cd9c023..fedb14b98 100644
--- a/libempathy/empathy-utils.c
+++ b/libempathy/empathy-utils.c
@@ -397,6 +397,8 @@ empathy_protocol_icon_name (const gchar *protocol)
else if (!tp_strdiff (protocol, "simple"))
/* SIMPLE uses the same icon as SIP */
protocol = "sip";
+ else if (!tp_strdiff (protocol, "sms"))
+ return g_strdup ("phone");
return g_strdup_printf ("im-%s", protocol);
}