summaryrefslogtreecommitdiff
path: root/apps/gui/list.h
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-08-20 16:47:44 +0000
committerNils Wallménius <nils@rockbox.org>2009-08-20 16:47:44 +0000
commit3200d04d75c5e7556ed8880b155533e881a4d1e1 (patch)
tree188e2c9525b25cb8922a14766e51ab02bad3f831 /apps/gui/list.h
parent0a1728444882cdbc6a0c815bd88464de25ad94e9 (diff)
downloadrockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.tar.gz
rockbox-3200d04d75c5e7556ed8880b155533e881a4d1e1.zip
Make the formatter functions used by the settings return a pointer to avoid usless copying of lang strings, this brought with it a long chain of const correctness and a few random cleanups
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22440 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/list.h')
-rw-r--r--apps/gui/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h
index 7148e340cc..8a36acb005 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -64,8 +64,8 @@ typedef enum themable_icons list_get_icon(int selected_item, void * data);
64 * - buffer_len : length of the buffer 64 * - buffer_len : length of the buffer
65 * Returns a pointer to a string that contains the text to display 65 * Returns a pointer to a string that contains the text to display
66 */ 66 */
67typedef char * list_get_name(int selected_item, void * data, 67typedef const char * list_get_name(int selected_item, void * data,
68 char * buffer, size_t buffer_len); 68 char * buffer, size_t buffer_len);
69/* 69/*
70 * Voice callback 70 * Voice callback
71 * - selected_item : an integer that tells the number of the item to speak 71 * - selected_item : an integer that tells the number of the item to speak