summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2010-02-07 18:38:47 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2010-02-07 18:38:47 +0000
commit4d5e88245a3aa6ff80df63c5a145b2b41495cbb2 (patch)
tree787e6cc5223ae0df55ecde940debc173cde2d12c /apps/tree.c
parentbd0b7363ca28d3202338bb5f434b89f8d08a5e2b (diff)
downloadrockbox-4d5e88245a3aa6ff80df63c5a145b2b41495cbb2.zip
rockbox-4d5e88245a3aa6ff80df63c5a145b2b41495cbb2.tar.gz
rockbox-4d5e88245a3aa6ff80df63c5a145b2b41495cbb2.tar.bz2
rockbox-4d5e88245a3aa6ff80df63c5a145b2b41495cbb2.tar.xz
Remove more tabs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24550 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/apps/tree.c b/apps/tree.c
index dda3690..9053dcf 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -306,9 +306,9 @@ void tree_gui_init(void)
/* drawer function for the GUI_EVENT_REDRAW callback */
void tree_drawlists(void)
{
- /* band-aid to fix the bar/list redrawing properly after leaving a plugin */
- send_event(GUI_EVENT_THEME_CHANGED, NULL);
- /* end bandaid */
+ /* band-aid to fix the bar/list redrawing properly after leaving a plugin */
+ send_event(GUI_EVENT_THEME_CHANGED, NULL);
+ /* end bandaid */
gui_synclist_draw(&tree_lists);
}
@@ -482,21 +482,21 @@ static int update_dir(void)
/* load tracks from specified directory to resume play */
void resume_directory(const char *dir)
{
- int dirfilter = *tc.dirfilter;
- int ret;
+ int dirfilter = *tc.dirfilter;
+ int ret;
#ifdef HAVE_TAGCACHE
bool id3db = *tc.dirfilter == SHOW_ID3DB;
#endif
- /* make sure the dirfilter is sane. The only time it should be possible
- * thats its not is when resume playlist is called from a plugin
- */
+ /* make sure the dirfilter is sane. The only time it should be possible
+ * thats its not is when resume playlist is called from a plugin
+ */
#ifdef HAVE_TAGCACHE
- if (!id3db)
+ if (!id3db)
#endif
- *tc.dirfilter = global_settings.dirfilter;
- ret = ft_load(&tc, dir);
- *tc.dirfilter = dirfilter;
- if (ret < 0)
+ *tc.dirfilter = global_settings.dirfilter;
+ ret = ft_load(&tc, dir);
+ *tc.dirfilter = dirfilter;
+ if (ret < 0)
return;
lastdir[0] = 0;