diff options
author | Eike Rathke <erack@redhat.com> | 2013-09-03 20:08:39 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-09-03 20:35:43 +0200 |
commit | bdf442a86ad32cfd95352bf352080674c93b032a (patch) | |
tree | 0446c5d8394db79dfeca84b7bbd9a60452440312 /unotools | |
parent | 46f34ef59e76383df0cd3c040f80a9a4ea712bc9 (diff) |
was convertIsoStringToLanguage(), use convertToLanguageTypeWithFallback()
Change-Id: I4cfda0f08e1d85acc7f1b5819b8e0f64c4985bb1
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/syslocaleoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/syslocaleoptions.cxx b/unotools/source/config/syslocaleoptions.cxx index 561cb2048620..a02834b96378 100644 --- a/unotools/source/config/syslocaleoptions.cxx +++ b/unotools/source/config/syslocaleoptions.cxx @@ -674,7 +674,7 @@ void SvtSysLocaleOptions::GetCurrencyAbbrevAndLanguage( OUString& rAbbrev, { rAbbrev = rConfigString.copy( 0, nDelim ); OUString aIsoStr( rConfigString.copy( nDelim+1 ) ); - eLang = LanguageTag::convertToLanguageType( aIsoStr ); + eLang = LanguageTag::convertToLanguageTypeWithFallback( aIsoStr ); } else { |