diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-30 17:38:12 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-09-30 17:38:12 +0800 |
commit | bf32549f220c7adb3133b413490cf1af276c9cc6 (patch) | |
tree | a66dd966be08bcaa9266f6fdcd8a11feb1176f99 /libempathy | |
parent | 1e6d8b7b214389b03bb94762333c0f15e6351579 (diff) | |
download | gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar.gz gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar.bz2 gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar.lz gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar.xz gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.tar.zst gsoc2013-empathy-bf32549f220c7adb3133b413490cf1af276c9cc6.zip |
coding style fixes
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index 777ffeb24..5e7befd27 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -556,7 +556,7 @@ empathy_protocol_name_to_display_name (const gchar *proto_name) if (!tp_strdiff (proto_name, names[i].proto)) { if (names[i].translated) - return gettext(names[i].display); + return gettext (names[i].display); else return names[i].display; } @@ -584,7 +584,7 @@ empathy_service_name_to_display_name (const gchar *service_name) if (!tp_strdiff (service_name, names[i].service)) { if (names[i].translated) - return gettext(names[i].display); + return gettext (names[i].display); else return names[i].display; } |