diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-07-11 00:22:26 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-07-11 00:22:26 +0000 |
| commit | 1bc67c81b60539576c0073e8acd2ffa7d43ac882 (patch) | |
| tree | 8e8953e0cb7926b84da228abf8476b2f2e2678ab /apps/plugin.h | |
| parent | 7ad3a333a3af8a6ca3d6f1b4b025b0b7245684dd (diff) | |
| download | rockbox-1bc67c81b60539576c0073e8acd2ffa7d43ac882.zip rockbox-1bc67c81b60539576c0073e8acd2ffa7d43ac882.tar.gz rockbox-1bc67c81b60539576c0073e8acd2ffa7d43ac882.tar.bz2 rockbox-1bc67c81b60539576c0073e8acd2ffa7d43ac882.tar.xz | |
Fix type mismatch warnings and errors exposed when building with EABI toolchain.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21769 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 253cfd0..d1a5712 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -346,7 +346,8 @@ struct plugin_api { void (*gui_synclist_limit_scroll)(struct gui_synclist * lists, bool scroll); bool (*gui_synclist_do_button)(struct gui_synclist * lists, int *action, enum list_wrap wrap); - void (*gui_synclist_set_title)(struct gui_synclist *lists, char* title, int icon); + void (*gui_synclist_set_title)(struct gui_synclist *lists, char* title, + enum themable_icons icon); enum yesno_res (*gui_syncyesno_run)(const struct text_message * main_message, const struct text_message * yes_message, const struct text_message * no_message); |