summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c1
-rw-r--r--apps/settings.h1
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 2370a38eab..fbea2963f2 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[] = {
1069 {"presets", ACTION_FM_PRESET}, 1069 {"presets", ACTION_FM_PRESET},
1070#endif 1070#endif
1071}; 1071};
1072bool cfg_string_to_int(int setting_id, int* out, const char* str);
1073 1072
1074static int parse_touchregion(struct skin_element *element, 1073static int parse_touchregion(struct skin_element *element,
1075 struct wps_token *token, 1074 struct wps_token *token,
diff --git a/apps/settings.h b/apps/settings.h
index 7dca65ad9a..3f49cfcb2c 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -232,6 +232,7 @@ enum optiontype { INT, BOOL };
232 232
233const struct settings_list* find_setting(const void* variable, int *id); 233const struct settings_list* find_setting(const void* variable, int *id);
234bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len); 234bool cfg_int_to_string(int setting_id, int val, char* buf, int buf_len);
235bool cfg_string_to_int(int setting_id, int* out, const char* str);
235bool cfg_to_string(int setting_id, char* buf, int buf_len); 236bool cfg_to_string(int setting_id, char* buf, int buf_len);
236bool set_bool_options(const char* string, const bool* variable, 237bool set_bool_options(const char* string, const bool* variable,
237 const char* yes_str, int yes_voice, 238 const char* yes_str, int yes_voice,