diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 11:55:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:23 +0200 |
commit | 22435a0777d6048757855f7f30b04fb8e5523fb2 (patch) | |
tree | 2a8e66dbfca50cfee05739cf799f94b00774340d /extensions/source/config | |
parent | 957f8e02c29bc4df2f37f2a933957490cdf831f6 (diff) |
remove unnecessary use of OUString constructor in EXTENSIONS module
Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c
Diffstat (limited to 'extensions/source/config')
-rw-r--r-- | extensions/source/config/ldap/ldapuserprofilebe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/config/ldap/ldapuserprofilebe.cxx b/extensions/source/config/ldap/ldapuserprofilebe.cxx index fd595f347b70..e6d4eb8616a7 100644 --- a/extensions/source/config/ldap/ldapuserprofilebe.cxx +++ b/extensions/source/config/ldap/ldapuserprofilebe.cxx @@ -227,7 +227,7 @@ OUString SAL_CALL LdapUserProfileBe::getImplementationName(void) uno::Sequence<OUString> SAL_CALL LdapUserProfileBe::getLdapUserProfileBeServiceNames(void) { uno::Sequence<OUString> aServices(1) ; - aServices[0] = OUString("com.sun.star.configuration.backend.LdapUserProfileBe") ; + aServices[0] = "com.sun.star.configuration.backend.LdapUserProfileBe"; return aServices ; } |