summaryrefslogtreecommitdiffstats
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-11-17 10:43:09 -0500
committerSolomon Peachy <pizza@shaftnet.org>2020-11-17 11:06:13 -0500
commit170f72156bd79aac3a648a5f1ce578d7484553b7 (patch)
tree4905ade6e98377b0d44c7444d066f428f5aa9441 /apps/settings_list.c
parent7ff3c94e1340f6a78b232a631832c8fd4199a00a (diff)
downloadrockbox-170f72156b.tar.gz
rockbox-170f72156b.zip
lang: Drop all deprecated strings, and rename LANG__NEVER to LANG_NEVER
Change-Id: Ie1a1cb04ecb566b75d9884b98a8c4e37a4e8736f
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 71085906ce..e296582482 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -389,7 +389,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
(void) buffer_size;
(void) unit;
if (val == -1)
- return str(LANG__NEVER);
+ return str(LANG_NEVER);
else if (val == 0)
return str(LANG_ALWAYS);
return buffer;
@@ -398,7 +398,7 @@ static const char* formatter_time_unit_0_is_always(char *buffer, size_t buffer_s
static int32_t getlang_time_unit_0_is_always(int value, int unit)
{
if (value == -1)
- return LANG__NEVER;
+ return LANG_NEVER;
else if (value == 0)
return LANG_ALWAYS;
else