From 87366694d82c8d4c7f0bc210e6baa0ccd651d0c2 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Tue, 7 Jul 2009 19:35:54 +0200 Subject: Remove the internal GUI The GUI is badly designed and too closely coupled to the internal details of other code. The GUI code is in bad shape and unmaintained for years. There is no indication that anyone would maintain it in the future either. Even if someone did volunteer to implement a better integrated GUI having the current code in the tree probably wouldn't help much. So get rid of it. --- playtree.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'playtree.h') diff --git a/playtree.h b/playtree.h index f1935f2c40..325118e785 100644 --- a/playtree.h +++ b/playtree.h @@ -269,13 +269,8 @@ void pt_iter_replace_entry(play_tree_iter_t* iter, play_tree_t* entry); /// 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. +// A macro 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); -- cgit v1.2.3