diff options
author | Eike Rathke <erack@redhat.com> | 2013-09-03 20:05:47 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-09-03 20:35:43 +0200 |
commit | 46f34ef59e76383df0cd3c040f80a9a4ea712bc9 (patch) | |
tree | 034f9d90b65c6207621a44bf1718fc23f25673ce /unotools | |
parent | 5cc71722912ac2d6caa4ab967293667954fde09c (diff) |
was convertIsoStringToLanguage(), use convertToLanguageTypeWithFallback()
Change-Id: If5dfd19368e2bd94aa55e06a65d68f422bae3877
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/lingucfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/lingucfg.cxx b/unotools/source/config/lingucfg.cxx index 5adef3068dd6..47bcadc36163 100644 --- a/unotools/source/config/lingucfg.cxx +++ b/unotools/source/config/lingucfg.cxx @@ -82,7 +82,7 @@ static sal_Int16 lcl_CfgAnyToLanguage( const uno::Any &rVal ) { OUString aTmp; rVal >>= aTmp; - return (aTmp.isEmpty()) ? LANGUAGE_SYSTEM : LanguageTag::convertToLanguageType( aTmp ); + return (aTmp.isEmpty()) ? LANGUAGE_SYSTEM : LanguageTag::convertToLanguageTypeWithFallback( aTmp ); } SvtLinguOptions::SvtLinguOptions() |