diff gui/cfg.c @ 34610:4ff933a89818

Cosmetic: Rename functions in list.c. Additionally, change a parameter name of new listMgr() and add some doxygen comments to list.h.
author ib
date Sun, 12 Feb 2012 18:44:19 +0000
parents 04feb00f91be
children 97148652b0c6
line wrap: on
line diff
--- a/gui/cfg.c	Sun Feb 12 18:39:27 2012 +0000
+++ b/gui/cfg.c	Sun Feb 12 18:44:19 2012 +0000
@@ -291,7 +291,7 @@
 
             if (fgetstr(line, sizeof(line), file) && *line) {
                 item->name = strdup(line);
-                listSet(gtkAddPlItem, item);
+                listMgr(gtkAddPlItem, item);
             } else {
                 free(item->path);
                 free(item);
@@ -323,7 +323,7 @@
             }
 
             item->url = strdup(line);
-            listSet(gtkAddURLItem, item);
+            listMgr(gtkAddURLItem, item);
         }
 
         fclose(file);