summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ucbhelper/source/provider/providerhelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucbhelper/source/provider/providerhelper.cxx b/ucbhelper/source/provider/providerhelper.cxx
index 67357d687ddd..7385d9b86719 100644
--- a/ucbhelper/source/provider/providerhelper.cxx
+++ b/ucbhelper/source/provider/providerhelper.cxx
@@ -306,7 +306,7 @@ bool ContentProviderImplHelper::renameAdditionalPropertySet(
OUString aOldKeyWithoutSlash;
if ( !aOldKeyWithSlash.endsWith("/") )
{
- aOldKeyWithSlash += OUString( '/' );
+ aOldKeyWithSlash += "/";
aOldKeyWithoutSlash = rOldKey;
}
else if ( !rOldKey.isEmpty() )
@@ -390,7 +390,7 @@ bool ContentProviderImplHelper::copyAdditionalPropertySet(
OUString aSrcKeyWithoutSlash;
if ( !aSrcKeyWithSlash.endsWith("/") )
{
- aSrcKeyWithSlash += OUString( '/' );
+ aSrcKeyWithSlash += "/";
aSrcKeyWithoutSlash = rSourceKey;
}
else if ( !rSourceKey.isEmpty() )
@@ -526,7 +526,7 @@ bool ContentProviderImplHelper::removeAdditionalPropertySet(
OUString aKeyWithoutSlash;
if ( !aKeyWithSlash.endsWith("/") )
{
- aKeyWithSlash += OUString( '/' );
+ aKeyWithSlash += "/";
aKeyWithoutSlash = rKey;
}
else if ( !rKey.isEmpty() )