diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-10-21 20:03:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-10-21 21:14:57 +0200 |
commit | 5722e85ca0e0fc24c7e9fcd252113717d69b72d4 (patch) | |
tree | 1af344195e9059b309dfa5e842e2993d5bf487e7 /vcl/workben/localestub | |
parent | d99428453409b48e089800e4dafdff9cb65ccce2 (diff) |
ofz#40166 fix build failure
Change-Id: Ie71b63cbd7e10aff6a9374dcaad24c3153db3bb1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124039
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/workben/localestub')
-rw-r--r-- | vcl/workben/localestub/localedata_en_IL.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vcl/workben/localestub/localedata_en_IL.cxx b/vcl/workben/localestub/localedata_en_IL.cxx index bea5731a7454..c0323b6768f5 100644 --- a/vcl/workben/localestub/localedata_en_IL.cxx +++ b/vcl/workben/localestub/localedata_en_IL.cxx @@ -18,14 +18,14 @@ SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getLCInfo_en_IL(sal_Int16& count) count = SAL_N_ELEMENTS(LCInfoArray); return (sal_Unicode**)LCInfoArray; } -extern sal_Unicode** SAL_CALL getLocaleItem_he_IL(sal_Int16& count); +extern sal_Unicode** SAL_CALL getLocaleItem_en_US(sal_Int16& count); SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getLocaleItem_en_IL(sal_Int16& count) { - return getLocaleItem_he_IL(count); + return getLocaleItem_en_US(count); } static const sal_Unicode replaceTo0[] = { 0x5b, 0x24, 0x200e, 0x20aa, 0x2d, 0x42, 0x34, 0x30, 0x39, 0x5d, 0x0 }; -extern sal_Unicode const* const* SAL_CALL getAllFormats0_he_IL(sal_Int16& count, +extern sal_Unicode const* const* SAL_CALL getAllFormats0_en_US(sal_Int16& count, const sal_Unicode*& from, const sal_Unicode*& to); SAL_DLLPUBLIC_EXPORT sal_Unicode const* const* SAL_CALL @@ -33,12 +33,12 @@ getAllFormats0_en_IL(sal_Int16& count, const sal_Unicode*& from, const sal_Unico { to = replaceTo0; const sal_Unicode* tmp; - return getAllFormats0_he_IL(count, from, tmp); + return getAllFormats0_en_US(count, from, tmp); } -extern sal_Unicode** SAL_CALL getDateAcceptancePatterns_he_IL(sal_Int16& count); +extern sal_Unicode** SAL_CALL getDateAcceptancePatterns_en_US(sal_Int16& count); SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getDateAcceptancePatterns_en_IL(sal_Int16& count) { - return getDateAcceptancePatterns_he_IL(count); + return getDateAcceptancePatterns_en_US(count); } static const sal_Unicode replaceTo1[] = { 0x0 }; extern sal_Unicode const* const* SAL_CALL getAllFormats1_en_US(sal_Int16& count, @@ -86,10 +86,10 @@ SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getAllCalendars_en_IL(sal_Int16& cou { return getAllCalendars_en_US(count); } -extern sal_Unicode** SAL_CALL getAllCurrencies_he_IL(sal_Int16& count); +extern sal_Unicode** SAL_CALL getAllCurrencies_en_US(sal_Int16& count); SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getAllCurrencies_en_IL(sal_Int16& count) { - return getAllCurrencies_he_IL(count); + return getAllCurrencies_en_US(count); } extern sal_Unicode** SAL_CALL getTransliterations_en_US(sal_Int16& count); SAL_DLLPUBLIC_EXPORT sal_Unicode** SAL_CALL getTransliterations_en_IL(sal_Int16& count) |