summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav-neon/ContentProperties.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav-neon/ContentProperties.cxx')
-rw-r--r--ucb/source/ucp/webdav-neon/ContentProperties.cxx15
1 files changed, 4 insertions, 11 deletions
diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.cxx b/ucb/source/ucp/webdav-neon/ContentProperties.cxx
index c13f0ed0b550..12bbf4f740cd 100644
--- a/ucb/source/ucp/webdav-neon/ContentProperties.cxx
+++ b/ucb/source/ucp/webdav-neon/ContentProperties.cxx
@@ -222,11 +222,8 @@ void ContentProperties::UCBNamesToDAVNames(
bool bContentLength = false;
bool bResourceType = false;
- sal_Int32 nCount = rProps.getLength();
- for ( sal_Int32 n = 0; n < nCount; ++n )
+ for ( const beans::Property & rProp : rProps )
{
- const beans::Property & rProp = rProps[ n ];
-
if ( rProp.Name == "Title" )
{
// Title is always obtained from resource's URI.
@@ -295,11 +292,8 @@ void ContentProperties::UCBNamesToHTTPNames(
// Content-Type <- MediaType
// Content-Length <- Size
- sal_Int32 nCount = rProps.getLength();
- for ( sal_Int32 n = 0; n < nCount; ++n )
+ for ( const beans::Property & rProp : rProps )
{
- const beans::Property & rProp = rProps[ n ];
-
if ( rProp.Name == "DateModified" )
{
propertyNames.emplace_back("Last-Modified" );
@@ -326,10 +320,9 @@ bool ContentProperties::containsAllNames(
{
rNamesNotContained.clear();
- sal_Int32 nCount = rProps.getLength();
- for ( sal_Int32 n = 0; n < nCount; ++n )
+ for ( const auto& rProp : rProps )
{
- const OUString & rName = rProps[ n ].Name;
+ const OUString & rName = rProp.Name;
if ( !contains( rName ) )
{
// Not found.