summaryrefslogtreecommitdiff
path: root/apps/filetree.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-18 09:03:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-18 09:03:25 +0000
commit09fce707c117aa4006ca30a5a0bf9eb7a89e2caa (patch)
tree9345d5f6d7d06e122520347a3d9fa3127d3bd4fe /apps/filetree.c
parentfe2c40aedb514126605d5c370ad9792cceadac57 (diff)
downloadrockbox-09fce707c117aa4006ca30a5a0bf9eb7a89e2caa.zip
rockbox-09fce707c117aa4006ca30a5a0bf9eb7a89e2caa.tar.gz
rockbox-09fce707c117aa4006ca30a5a0bf9eb7a89e2caa.tar.bz2
rockbox-09fce707c117aa4006ca30a5a0bf9eb7a89e2caa.tar.xz
Missing file headers put back. Code within 80 cols. Code policed indenting
and style. Simplified struct levels. #if 0'ed unused functions. Made private stuff static. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7954 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
-rw-r--r--apps/filetree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/filetree.c b/apps/filetree.c
index 6855d3e..236ee48 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -384,7 +384,7 @@ int ft_enter(struct tree_context* c)
/* wps config file */
case TREE_ATTR_WPS:
- wps_data_load(gui_syncwps.gui_wps[0].data, buf, true, true);
+ wps_data_load(gui_wps[0].data, buf, true, true);
set_file(buf, global_settings.wps_file,
MAX_FILENAME);
break;
@@ -392,7 +392,7 @@ int ft_enter(struct tree_context* c)
#ifdef HAVE_REMOTE_LCD
/* remote-wps config file */
case TREE_ATTR_RWPS:
- wps_data_load(gui_syncwps.gui_wps[1].data, buf, true, true);
+ wps_data_load(gui_wps[1].data, buf, true, true);
set_file(buf, global_settings.rwps_file,
MAX_FILENAME);
break;