update comments
authorThomas Thurman <tthurman@gnome.org>
Fri, 28 Aug 2009 18:01:35 +0000 (14:01 -0400)
committerThomas Thurman <tthurman@gnome.org>
Fri, 28 Aug 2009 18:01:35 +0000 (14:01 -0400)
belltower.c

index b699af2..70f6e22 100644 (file)
@@ -555,11 +555,13 @@ show_towers_from_list (GSList *list)
 
   if (!list->next)
     {
 
   if (!list->next)
     {
-      /* don't bother showing the list */
+      /* only one; don't bother showing the list */
       hildon_banner_show_information(window,
                                     NULL,
                                     "One tower found.");
       show_tower (list->data);
       hildon_banner_show_information(window,
                                     NULL,
                                     "One tower found.");
       show_tower (list->data);
+
+      /* FIXME: and free the list */
       return;
     }
 
       return;
     }
 
@@ -589,6 +591,8 @@ show_towers_from_list (GSList *list)
       show_tower (result);
       g_free (result);
     }
       show_tower (result);
       g_free (result);
     }
+
+  /* FIXME: and free the list */
 }
 
 static gint strcmp_f (gconstpointer a,
 }
 
 static gint strcmp_f (gconstpointer a,