diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-10 21:06:19 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-02-10 21:06:19 +0800 |
commit | ccb3964865cf65dcca05a145ceac91137746c331 (patch) | |
tree | b1a67584ee7905566a995ce8be855a10275efe63 /libempathy/empathy-utils.c | |
parent | 3a3b095dd0f76eec019f424105e40d3d344a59e2 (diff) | |
download | gsoc2013-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
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 2 |
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); } |