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.tar.gz
rockbox-09fce707c117aa4006ca30a5a0bf9eb7a89e2caa.zip
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 6855d3ec5d..236ee487d7 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -384,7 +384,7 @@ int ft_enter(struct tree_context* c)
384 384
385 /* wps config file */ 385 /* wps config file */
386 case TREE_ATTR_WPS: 386 case TREE_ATTR_WPS:
387 wps_data_load(gui_syncwps.gui_wps[0].data, buf, true, true); 387 wps_data_load(gui_wps[0].data, buf, true, true);
388 set_file(buf, global_settings.wps_file, 388 set_file(buf, global_settings.wps_file,
389 MAX_FILENAME); 389 MAX_FILENAME);
390 break; 390 break;
@@ -392,7 +392,7 @@ int ft_enter(struct tree_context* c)
392#ifdef HAVE_REMOTE_LCD 392#ifdef HAVE_REMOTE_LCD
393 /* remote-wps config file */ 393 /* remote-wps config file */
394 case TREE_ATTR_RWPS: 394 case TREE_ATTR_RWPS:
395 wps_data_load(gui_syncwps.gui_wps[1].data, buf, true, true); 395 wps_data_load(gui_wps[1].data, buf, true, true);
396 set_file(buf, global_settings.rwps_file, 396 set_file(buf, global_settings.rwps_file,
397 MAX_FILENAME); 397 MAX_FILENAME);
398 break; 398 break;