diff playtree.h @ 31320:fd78d436d30f

Remove unused function pt_add_gui_file().
author diego
date Sun, 13 Jun 2010 17:15:55 +0000
parents de190efe4da3
children c55e842e9ef2
line wrap: on
line diff
--- a/playtree.h	Sun Jun 13 17:10:52 2010 +0000
+++ b/playtree.h	Sun Jun 13 17:15:55 2010 +0000
@@ -286,13 +286,8 @@
 /// Adds a new file to the playtree, if it is not valid it is created.
 void pt_add_file(play_tree_t** ppt, char* filename);
 
-/// \brief Performs a convert to playtree-syntax, by concat path/file
-/// and performs pt_add_file
-void pt_add_gui_file(play_tree_t** ppt, char* path, char* file);
-
 // Two macros to use only the iter and not the other things.
 #define pt_iter_add_file(iter, filename) pt_add_file(&iter->tree, filename)
-#define pt_iter_add_gui_file(iter, path, name) pt_add_gui_file(&iter->tree, path, name)
 
 /// Resets the iter and goes back to head.
 void pt_iter_goto_head(play_tree_iter_t* iter);