diff options
| author | Tomer Shalev <shalev.tomer@gmail.com> | 2010-04-07 20:41:18 +0000 |
|---|---|---|
| committer | Tomer Shalev <shalev.tomer@gmail.com> | 2010-04-07 20:41:18 +0000 |
| commit | 56058c7213f281c61601f12cc0cdbcbf3b425a08 (patch) | |
| tree | 6937891a9f05318374962cb52b78977358681386 /apps/plugin.h | |
| parent | 62321ed0bd7d8d5879a9caad3d8f642dbe876033 (diff) | |
| download | rockbox-56058c7213f281c61601f12cc0cdbcbf3b425a08.zip rockbox-56058c7213f281c61601f12cc0cdbcbf3b425a08.tar.gz rockbox-56058c7213f281c61601f12cc0cdbcbf3b425a08.tar.bz2 rockbox-56058c7213f281c61601f12cc0cdbcbf3b425a08.tar.xz | |
FS#11187 - diacritic.c is in 'drivers' but it does not belong there
- Move diacritic.c to firmware/common
- The function is_diacritic returns bool now
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25526 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 464a581..31c8743 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -865,7 +865,7 @@ struct plugin_api { the API gets incompatible */ #ifdef HAVE_LCD_BITMAP - int (*is_diacritic)(const unsigned short char_code, bool *is_rtl); + bool (*is_diacritic)(const unsigned short char_code, bool *is_rtl); #endif }; |