aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-24 18:46:38 +0800
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>2011-02-24 23:39:58 +0800
commit93d07624b205676bb0cc3f42e7834945856b8ca5 (patch)
treeeb4876101565f2a947728ba639d025a847f7a40e
parent6153b748bc55d0735e7294a0dcfe87905b579f11 (diff)
downloadgsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar.gz
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar.bz2
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar.lz
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar.xz
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.tar.zst
gsoc2013-empathy-93d07624b205676bb0cc3f42e7834945856b8ca5.zip
Indentation fix
-rw-r--r--libempathy-gtk/empathy-log-window.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 9e715711a..2fd954945 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -809,27 +809,27 @@ log_manager_got_entities_cb (GObject *manager,
store = GTK_LIST_STORE (model);
for (l = entities; l; l = l->next) {
- TplEntity *entity;
-
- entity = TPL_ENTITY (l->data);
-
- gtk_list_store_append (store, &iter);
- gtk_list_store_set (store, &iter,
- COL_CHAT_ICON, "empathy-available", /* FIXME */
- COL_CHAT_NAME, tpl_entity_get_alias (entity),
- COL_CHAT_ACCOUNT, account,
- COL_CHAT_TARGET, entity,
- -1);
-
- if (window->selected_account != NULL &&
- !tp_strdiff (tp_proxy_get_object_path (account),
- tp_proxy_get_object_path (window->selected_account)))
- select_account = TRUE;
-
- /* FIXME: Update COL_CHAT_ICON/NAME */
- if (tpl_entity_get_entity_type (entity) == TPL_ENTITY_ROOM) {
- } else {
- }
+ TplEntity *entity;
+
+ entity = TPL_ENTITY (l->data);
+
+ gtk_list_store_append (store, &iter);
+ gtk_list_store_set (store, &iter,
+ COL_CHAT_ICON, "empathy-available", /* FIXME */
+ COL_CHAT_NAME, tpl_entity_get_alias (entity),
+ COL_CHAT_ACCOUNT, account,
+ COL_CHAT_TARGET, entity,
+ -1);
+
+ if (window->selected_account != NULL &&
+ !tp_strdiff (tp_proxy_get_object_path (account),
+ tp_proxy_get_object_path (window->selected_account)))
+ select_account = TRUE;
+
+ /* FIXME: Update COL_CHAT_ICON/NAME */
+ if (tpl_entity_get_entity_type (entity) == TPL_ENTITY_ROOM) {
+ } else {
+ }
}
g_list_free_full (entities, g_object_unref);