summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2014-01-19 15:02:07 +0100
committerEike Rathke <erack@redhat.com>2014-01-19 15:04:09 +0100
commit26fc9be1bf2d6aaeb52a571ea416f4527a52e146 (patch)
treecc29b818745414a8a806a98e1e66a2a3fa7a42f0 /configmgr
parentdb6f8f9f8969b592ed90c841960fdd186e1cbc5a (diff)
do not resolve empty locale here when set, fdo#73549 related
Change-Id: Id9c8c3926f64826fd2295e0f75f007ce435f5915
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/configurationprovider.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/configurationprovider.cxx b/configmgr/source/configurationprovider.cxx
index 637657b0353b..8a76390c84b4 100644
--- a/configmgr/source/configurationprovider.cxx
+++ b/configmgr/source/configurationprovider.cxx
@@ -344,7 +344,7 @@ void Service::setLocale(css::lang::Locale const & eLocale)
throw (css::uno::RuntimeException)
{
osl::MutexGuard guard(*lock_);
- locale_ = LanguageTag::convertToBcp47( eLocale);
+ locale_ = LanguageTag::convertToBcp47( eLocale, false);
}
css::lang::Locale Service::getLocale() throw (css::uno::RuntimeException) {