diff options
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchycontent.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/package/pkgcontent.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_content.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/webdavcontent.cxx | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchycontent.cxx b/ucb/source/ucp/hierarchy/hierarchycontent.cxx index 718de574a830..6d6a9a4d063e 100644 --- a/ucb/source/ucp/hierarchy/hierarchycontent.cxx +++ b/ucb/source/ucp/hierarchy/hierarchycontent.cxx @@ -486,7 +486,7 @@ uno::Any SAL_CALL HierarchyContent::execute( } // Remove own and all children's Additional Core Properties. - removeAdditionalPropertySet( true ); + removeAdditionalPropertySet(); } else if ( aCommand.Name == "transfer" && isFolder() && !isReadOnly() ) { @@ -1826,7 +1826,7 @@ void HierarchyContent::transfer( } // Remove own and all children's Additional Core Properties. - xSource->removeAdditionalPropertySet( true ); + xSource->removeAdditionalPropertySet(); } } diff --git a/ucb/source/ucp/package/pkgcontent.cxx b/ucb/source/ucp/package/pkgcontent.cxx index df53c1f7350d..f821140ca3e7 100644 --- a/ucb/source/ucp/package/pkgcontent.cxx +++ b/ucb/source/ucp/package/pkgcontent.cxx @@ -578,7 +578,7 @@ uno::Any SAL_CALL Content::execute( } // Remove own and all children's Additional Core Properties. - removeAdditionalPropertySet( true ); + removeAdditionalPropertySet(); } else if ( aCommand.Name == "transfer" ) { @@ -2061,7 +2061,7 @@ void Content::transfer( } // Remove own and all children's Additional Core Properties. - xSource->removeAdditionalPropertySet( true ); + xSource->removeAdditionalPropertySet(); } } diff --git a/ucb/source/ucp/tdoc/tdoc_content.cxx b/ucb/source/ucp/tdoc/tdoc_content.cxx index 07a97adfd27e..37a58f1a29b3 100644 --- a/ucb/source/ucp/tdoc/tdoc_content.cxx +++ b/ucb/source/ucp/tdoc/tdoc_content.cxx @@ -550,7 +550,7 @@ uno::Any SAL_CALL Content::execute( } // Remove own and all children's Additional Core Properties. - removeAdditionalPropertySet( true ); + removeAdditionalPropertySet(); } else if ( aCommand.Name == "transfer" ) { @@ -2202,7 +2202,7 @@ void Content::transfer( } // Remove own and all children's Additional Core Properties. - if ( !xSource->removeAdditionalPropertySet( true ) ) + if ( !xSource->removeAdditionalPropertySet() ) { uno::Any aProps = uno::makeAny( diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx index e0eeeeaac6eb..50dc91cccfe0 100644 --- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx +++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx @@ -546,7 +546,7 @@ uno::Any SAL_CALL Content::execute( destroy( bDeletePhysical ); // Remove own and all children's Additional Core Properties. - removeAdditionalPropertySet( true ); + removeAdditionalPropertySet(); } else if ( aCommand.Name == "transfer" && isFolder( Environment ) ) { |