diff options
author | Eike Rathke <erack@redhat.com> | 2014-01-19 14:02:44 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-01-19 15:04:08 +0100 |
commit | db6f8f9f8969b592ed90c841960fdd186e1cbc5a (patch) | |
tree | f8cb55f0f26f5c77163d8af704135e81078591de /comphelper/source | |
parent | 5756b4c52b5caf26cdebe055623751e473564d8a (diff) |
fdo#73549 do not resolve empty locale here if not determined yet
Change-Id: Iad03d6209a2b4024b27c6195195e5aa557c295fe
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/configuration.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/misc/configuration.cxx b/comphelper/source/misc/configuration.cxx index 69885b98163f..6f9e5fdbdf3f 100644 --- a/comphelper/source/misc/configuration.cxx +++ b/comphelper/source/misc/configuration.cxx @@ -47,7 +47,7 @@ OUString getDefaultLocale( css::uno::Reference< css::lang::XLocalizable >( css::configuration::theDefaultProvider::get(context), css::uno::UNO_QUERY_THROW)-> - getLocale()).getBcp47(); + getLocale()).getBcp47(false); } OUString extendLocalizedPath(OUString const & path, OUString const & locale) { |