forked from len0rd/rockbox
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
This commit is contained in:
parent
0a17284448
commit
3200d04d75
43 changed files with 191 additions and 170 deletions
|
@ -121,8 +121,8 @@ int _do_action(int action, char* str, int line)
|
|||
last_char_index = c;
|
||||
return 1;
|
||||
}
|
||||
char *list_get_name_cb(int selected_item, void* data,
|
||||
char* buf, size_t buf_len)
|
||||
static const char* list_get_name_cb(int selected_item, void* data,
|
||||
char* buf, size_t buf_len)
|
||||
{
|
||||
(void)data;
|
||||
char *b = &buffer[do_action(ACTION_GET,0,selected_item)];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue