mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Plugin parameters should be const.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17492 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a94e40d515
commit
6526577818
159 changed files with 363 additions and 371 deletions
|
@ -25,7 +25,7 @@
|
|||
/*
|
||||
* Print a checkbox
|
||||
*/
|
||||
void checkbox(struct plugin_api *api, int x, int y, int width, int height, bool checked)
|
||||
void checkbox(const struct plugin_api *api, int x, int y, int width, int height, bool checked)
|
||||
{
|
||||
/* draw box */
|
||||
api->lcd_drawrect(x, y, width, height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue