summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrik Sikken <bertrik@sikken.nl>2010-01-05 21:15:20 +0000
committerBertrik Sikken <bertrik@sikken.nl>2010-01-05 21:15:20 +0000
commit44fa025d8f252b468f25d598976c780262e46cb2 (patch)
treed81ef0df92caf5650c9fbf5c1ab27f84d914ee1e
parent2581cf4909f51749255c6f09282791cac08a99fe (diff)
downloadrockbox-44fa025d8f252b468f25d598976c780262e46cb2.tar.gz
rockbox-44fa025d8f252b468f25d598976c780262e46cb2.zip
Use plain int (instead of char) for field selection_size in struct simplelist_info
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24188 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/gui/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h
index ed61889083..ef16c719c1 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -206,7 +206,7 @@ extern bool list_do_action(int context, int timeout,
206struct simplelist_info { 206struct simplelist_info {
207 char *title; /* title to show on the list */ 207 char *title; /* title to show on the list */
208 int count; /* number of items in the list, each item is selection_size high */ 208 int count; /* number of items in the list, each item is selection_size high */
209 char selection_size; /* list selection size, usually 1 */ 209 int selection_size; /* list selection size, usually 1 */
210 bool hide_selection; 210 bool hide_selection;
211 bool scroll_all; 211 bool scroll_all;
212 int timeout; 212 int timeout;