diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-06-13 21:22:23 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-07-11 20:39:48 +0800 |
commit | a446f3ec4f2259f651de668e27563e3717226f04 (patch) | |
tree | e81d92086201535eb082a60d2c2eec822811690c | |
parent | 5155eb52821b6fd1951ef01513a5110135adc9f3 (diff) | |
download | gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar.gz gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar.bz2 gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar.lz gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar.xz gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.tar.zst gsoc2013-empathy-a446f3ec4f2259f651de668e27563e3717226f04.zip |
coding style fixes
https://bugzilla.gnome.org/show_bug.cgi?id=652439
-rw-r--r-- | libempathy/empathy-request-util.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-request-util.c b/libempathy/empathy-request-util.c index 136ddd2aa..953e9827c 100644 --- a/libempathy/empathy-request-util.c +++ b/libempathy/empathy-request-util.c @@ -93,8 +93,8 @@ empathy_chat_with_contact_id (TpAccount *account, const gchar *contact_id, gint64 timestamp) { - create_text_channel (account, TP_HANDLE_TYPE_CONTACT, - contact_id, FALSE, timestamp); + create_text_channel (account, TP_HANDLE_TYPE_CONTACT, + contact_id, FALSE, timestamp); } void @@ -102,8 +102,8 @@ empathy_join_muc (TpAccount *account, const gchar *room_name, gint64 timestamp) { - create_text_channel (account, TP_HANDLE_TYPE_ROOM, - room_name, FALSE, timestamp); + create_text_channel (account, TP_HANDLE_TYPE_ROOM, + room_name, FALSE, timestamp); } void |