summaryrefslogtreecommitdiff
path: root/unotools/source
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-09-03 20:05:47 +0200
committerEike Rathke <erack@redhat.com>2013-09-03 20:35:43 +0200
commit46f34ef59e76383df0cd3c040f80a9a4ea712bc9 (patch)
tree034f9d90b65c6207621a44bf1718fc23f25673ce /unotools/source
parent5cc71722912ac2d6caa4ab967293667954fde09c (diff)
was convertIsoStringToLanguage(), use convertToLanguageTypeWithFallback()
Change-Id: If5dfd19368e2bd94aa55e06a65d68f422bae3877
Diffstat (limited to 'unotools/source')
-rw-r--r--unotools/source/config/lingucfg.cxx2
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()