diff options
| -rw-r--r-- | apps/gui/skin_engine/skin_parser.c | 1 | ||||
| -rw-r--r-- | apps/settings.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c index 2370a38..fbea296 100644 --- a/apps/gui/skin_engine/skin_parser.c +++ b/apps/gui/skin_engine/skin_parser.c @@ -1069,7 +1069,6 @@ static const struct touchaction touchactions[] = { {"presets", ACTION_FM_PRESET}, #endif }; -bool cfg_string_to_int(int setting_id, int* out, const char* str); static int parse_touchregion(struct skin_element *element, struct wps_token *token, diff --git a/apps/settings.h b/apps/settings.h index 7dca65a..3f49cfc 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -232,6 +232,7 @@ enum optiontype { INT, BOOL }; const struct settings_list* find_setting(const void* variable, int *id); bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len); +bool cfg_string_to_int(int setting_id, int* out, const char* str); bool cfg_to_string(int setting_id, char* buf, int buf_len); bool set_bool_options(const char* string, const bool* variable, const char* yes_str, int yes_voice, |