summaryrefslogtreecommitdiff
path: root/ucbhelper/source/provider/providerhelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/provider/providerhelper.cxx')
-rw-r--r--ucbhelper/source/provider/providerhelper.cxx18
1 files changed, 6 insertions, 12 deletions
diff --git a/ucbhelper/source/provider/providerhelper.cxx b/ucbhelper/source/provider/providerhelper.cxx
index 28337b95219a..2949f6473eeb 100644
--- a/ucbhelper/source/provider/providerhelper.cxx
+++ b/ucbhelper/source/provider/providerhelper.cxx
@@ -377,11 +377,9 @@ sal_Bool ContentProviderImplHelper::renameAdditionalPropertySet(
{
OUString aOldKeyWithSlash = rOldKey;
OUString aOldKeyWithoutSlash;
- if ( aOldKeyWithSlash.lastIndexOf(
- sal_Unicode('/')
- != aOldKeyWithSlash.getLength() - 1 ) )
+ if ( !aOldKeyWithSlash.endsWith("/") )
{
- aOldKeyWithSlash += OUString( sal_Unicode('/') );
+ aOldKeyWithSlash += OUString( '/' );
aOldKeyWithoutSlash = rOldKey;
}
else if ( !rOldKey.isEmpty() )
@@ -464,11 +462,9 @@ sal_Bool ContentProviderImplHelper::copyAdditionalPropertySet(
{
OUString aSrcKeyWithSlash = rSourceKey;
OUString aSrcKeyWithoutSlash;
- if ( aSrcKeyWithSlash.lastIndexOf(
- sal_Unicode('/')
- != aSrcKeyWithSlash.getLength() - 1 ) )
+ if ( !aSrcKeyWithSlash.endsWith("/") )
{
- aSrcKeyWithSlash += OUString( sal_Unicode('/') );
+ aSrcKeyWithSlash += OUString( '/' );
aSrcKeyWithoutSlash = rSourceKey;
}
else if ( !rSourceKey.isEmpty() )
@@ -603,11 +599,9 @@ sal_Bool ContentProviderImplHelper::removeAdditionalPropertySet(
{
OUString aKeyWithSlash = rKey;
OUString aKeyWithoutSlash;
- if ( aKeyWithSlash.lastIndexOf(
- sal_Unicode('/')
- != aKeyWithSlash.getLength() - 1 ) )
+ if ( !aKeyWithSlash.endsWith("/") )
{
- aKeyWithSlash += OUString( (sal_Unicode)'/' );
+ aKeyWithSlash += OUString( '/' );
aKeyWithoutSlash = rKey;
}
else if ( !rKey.isEmpty() )