diff src/ui_pathsel.c @ 576:9dc0513837b5

dropped path_list functions, use filelist functions everywhere
author nadvornik
date Sun, 04 May 2008 21:54:20 +0000
parents 985fdfebd89e
children 651ae2be1031
line wrap: on
line diff
--- a/src/ui_pathsel.c	Sun May 04 19:00:39 2008 +0000
+++ b/src/ui_pathsel.c	Sun May 04 21:54:20 2008 +0000
@@ -240,7 +240,7 @@
 		list = list->next;
 		}
 
-	path_list_free(path_list);
+	string_list_free(path_list);
 
 
 	if (dd->f_view)
@@ -264,7 +264,7 @@
 			list = list->next;
 			}
 
-		path_list_free(file_list);
+		string_list_free(file_list);
 		}
 
 	g_free(dd->path);
@@ -355,7 +355,7 @@
 			break;
 		}
 
-	path_list_free(list);
+	string_list_free(list);
 
 	if (!uri_text) return;
 
@@ -970,10 +970,10 @@
 
 static void dest_filter_clear(Dest_Data *dd)
 {
-	path_list_free(dd->filter_list);
+	string_list_free(dd->filter_list);
 	dd->filter_list = NULL;
 
-	path_list_free(dd->filter_text_list);
+	string_list_free(dd->filter_text_list);
 	dd->filter_text_list = NULL;
 
 	dest_filter_add(dd, "*", _("All Files"), TRUE);