diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-11-18 09:03:25 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-18 09:03:25 +0000 |
| commit | 09fce707c117aa4006ca30a5a0bf9eb7a89e2caa (patch) | |
| tree | 9345d5f6d7d06e122520347a3d9fa3127d3bd4fe /apps/filetree.c | |
| parent | fe2c40aedb514126605d5c370ad9792cceadac57 (diff) | |
| download | rockbox-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.c | 4 |
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; |