summaryrefslogtreecommitdiff
path: root/ucb/source/core/ucbstore.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/core/ucbstore.cxx')
-rw-r--r--ucb/source/core/ucbstore.cxx20
1 files changed, 8 insertions, 12 deletions
diff --git a/ucb/source/core/ucbstore.cxx b/ucb/source/core/ucbstore.cxx
index 18f3af60e1c1..d9e4154e7ed0 100644
--- a/ucb/source/core/ucbstore.cxx
+++ b/ucb/source/core/ucbstore.cxx
@@ -736,10 +736,10 @@ void PropertySetRegistry::renamePropertySet( const OUString& rOldKey,
aOldValuesKey += "/";
- OUString aHandleKey("/Handle");
- OUString aValueKey("/Value");
- OUString aStateKey("/State");
- OUString aAttrKey("/Attributes");
+ OUString const aHandleKey("/Handle");
+ OUString const aValueKey("/Value");
+ OUString const aStateKey("/State");
+ OUString const aAttrKey("/Attributes");
for ( sal_Int32 n = 0; n < nCount; ++n )
{
@@ -763,32 +763,28 @@ void PropertySetRegistry::renamePropertySet( const OUString& rOldKey,
aKey += makeHierarchalNameSegment( rPropName );
// ... handle
- OUString aNewKey1 = aKey;
- aNewKey1 += aHandleKey;
+ OUString aNewKey1 = aKey + aHandleKey;
Any aAny =
xRootHierNameAccess->getByHierarchicalName(
aNewKey1 );
xNewPropNameReplace->replaceByName( "Handle", aAny );
// ... value
- aNewKey1 = aKey;
- aNewKey1 += aValueKey;
+ aNewKey1 = aKey + aValueKey;
aAny =
xRootHierNameAccess->getByHierarchicalName(
aNewKey1 );
xNewPropNameReplace->replaceByName( "Value", aAny );
// ... state
- aNewKey1 = aKey;
- aNewKey1 += aStateKey;
+ aNewKey1 = aKey + aStateKey;
aAny =
xRootHierNameAccess->getByHierarchicalName(
aNewKey1 );
xNewPropNameReplace->replaceByName( "State", aAny );
// ... attributes
- aNewKey1 = aKey;
- aNewKey1 += aAttrKey;
+ aNewKey1 = aKey + aAttrKey;
aAny =
xRootHierNameAccess->getByHierarchicalName(
aNewKey1 );