]> git.0d.be Git - empathy.git/commitdiff
Indentation fix
authorEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Thu, 24 Feb 2011 10:46:38 +0000 (10:46 +0000)
committerEmilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
Thu, 24 Feb 2011 17:09:24 +0000 (17:09 +0000)
libempathy-gtk/empathy-log-window.c

index 60859968ed798ac71fc7f13ae8eeeb2f7f0892b9..7c878ce0630459121371408cd1f3cf5212420142 100644 (file)
@@ -820,27 +820,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);