diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/core/ucbcmds.cxx | 3 | ||||
-rw-r--r-- | ucb/source/ucp/cmis/auth_provider.cxx | 2 | ||||
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchycontent.cxx | 3 | ||||
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 3 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.cxx | 6 |
5 files changed, 6 insertions, 11 deletions
diff --git a/ucb/source/core/ucbcmds.cxx b/ucb/source/core/ucbcmds.cxx index 2565548fdefd..ca6c0d07ee0f 100644 --- a/ucb/source/core/ucbcmds.cxx +++ b/ucb/source/core/ucbcmds.cxx @@ -392,8 +392,7 @@ NameClashContinuation interactiveNameClashResolve( new ucbhelper::SimpleNameClashResolveRequest( rTargetURL, // target folder URL rClashingName, // clashing name - OUString(), // no proposal for new name - true /* bSupportsOverwriteData */ ) ); + OUString() ) ); // no proposal for new name rException = xRequest->getRequest(); if ( xEnv.is() ) diff --git a/ucb/source/ucp/cmis/auth_provider.cxx b/ucb/source/ucp/cmis/auth_provider.cxx index 3adefe88473b..64cb84ecd6ca 100644 --- a/ucb/source/ucp/cmis/auth_provider.cxx +++ b/ucb/source/ucp/cmis/auth_provider.cxx @@ -38,7 +38,7 @@ namespace cmis m_sUrl, m_sBindingUrl, OUString(), STD_TO_OUSTR( username ), STD_TO_OUSTR( password ), - OUString(), true, false, false ); + OUString(), false, false ); xIH->handle( xRequest.get() ); rtl::Reference< ucbhelper::InteractionContinuation > xSelection diff --git a/ucb/source/ucp/hierarchy/hierarchycontent.cxx b/ucb/source/ucp/hierarchy/hierarchycontent.cxx index 6d6a9a4d063e..e73cdcf99aeb 100644 --- a/ucb/source/ucp/hierarchy/hierarchycontent.cxx +++ b/ucb/source/ucp/hierarchy/hierarchycontent.cxx @@ -1297,8 +1297,7 @@ uno::Sequence< uno::Any > HierarchyContent::setPropertyValues( // Adapt Additional Core Properties. renameAdditionalPropertySet( xOldId->getContentIdentifier(), - xNewId->getContentIdentifier(), - true ); + xNewId->getContentIdentifier() ); } else { diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index f821140ca3e7..e90152f5de8d 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -1359,8 +1359,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues( // Adapt Additional Core Properties. renameAdditionalPropertySet( xOldId->getContentIdentifier(), - xNewId->getContentIdentifier(), - true ); + xNewId->getContentIdentifier() ); } else { diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx index 37a58f1a29b3..08895cfae8ca 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.cxx +++ b/ucb/source/ucp/tdoc/tdoc_content.cxx @@ -1321,8 +1321,7 @@ uno::Sequence< uno::Any > Content::setPropertyValues( // Adapt Additional Core Properties. renameAdditionalPropertySet( xOldId->getContentIdentifier(), - xNewId->getContentIdentifier(), - true ); + xNewId->getContentIdentifier() ); } else { @@ -2080,8 +2079,7 @@ void Content::transfer( else aTargetUri += aSourceUri.getName(); - if ( !copyAdditionalPropertySet( - aSourceUri.getUri(), aTargetUri, true ) ) + if ( !copyAdditionalPropertySet( aSourceUri.getUri(), aTargetUri ) ) { uno::Any aProps = uno::makeAny( |