summaryrefslogtreecommitdiff
path: root/writerperfect/source/common/WPXSvInputStream.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerperfect/source/common/WPXSvInputStream.cxx')
-rw-r--r--writerperfect/source/common/WPXSvInputStream.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/writerperfect/source/common/WPXSvInputStream.cxx b/writerperfect/source/common/WPXSvInputStream.cxx
index 5daacca66904..4b57b25cbdad 100644
--- a/writerperfect/source/common/WPXSvInputStream.cxx
+++ b/writerperfect/source/common/WPXSvInputStream.cxx
@@ -367,12 +367,12 @@ void ZipStorageImpl::traverse(const Reference<container::XNameAccess>& rxContain
maStreams.reserve(lNames.getLength());
- for (sal_Int32 n = 0; n < lNames.getLength(); ++n)
+ for (const auto& rName : lNames)
{
- if (!lNames[n].endsWith("/")) // skip dirs
+ if (!rName.endsWith("/")) // skip dirs
{
- maStreams.emplace_back(OUStringToOString(lNames[n], RTL_TEXTENCODING_UTF8));
- maNameMap[lNames[n]] = maStreams.size() - 1;
+ maStreams.emplace_back(OUStringToOString(rName, RTL_TEXTENCODING_UTF8));
+ maNameMap[rName] = maStreams.size() - 1;
}
}
}