diff options
Diffstat (limited to 'configmgr/source/configurationprovider.cxx')
-rw-r--r-- | configmgr/source/configurationprovider.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/configurationprovider.cxx b/configmgr/source/configurationprovider.cxx index fcb605e42819..3f41805b446e 100644 --- a/configmgr/source/configurationprovider.cxx +++ b/configmgr/source/configurationprovider.cxx @@ -365,7 +365,7 @@ void Service::setLocale(css::lang::Locale const & eLocale) css::lang::Locale Service::getLocale() throw (css::uno::RuntimeException) { osl::MutexGuard guard(*lock_); css::lang::Locale loc; - if (locale_.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("*"))) { + if ( locale_ == "*" ) { loc.Language = locale_; } else if (! locale_.isEmpty()) { try { |