diff options
Diffstat (limited to 'package/source/zipapi/ZipEnumeration.cxx')
-rw-r--r-- | package/source/zipapi/ZipEnumeration.cxx | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/package/source/zipapi/ZipEnumeration.cxx b/package/source/zipapi/ZipEnumeration.cxx index 794ac1a7b9fc..9849c6854f61 100644 --- a/package/source/zipapi/ZipEnumeration.cxx +++ b/package/source/zipapi/ZipEnumeration.cxx @@ -21,18 +21,13 @@ /** Provides an Enumeration over the contents of a Zip file */ -ZipEnumeration::ZipEnumeration( EntryHash & rNewEntryHash) -: rEntryHash(rNewEntryHash) -, aIterator(rEntryHash.begin()) +ZipEnumeration::ZipEnumeration(EntryHash& rNewEntryHash) + : rEntryHash(rNewEntryHash) + , aIterator(rEntryHash.begin()) { } -ZipEnumeration::~ZipEnumeration() -{ -} -bool ZipEnumeration::hasMoreElements() -{ - return (aIterator != rEntryHash.end()); -} +ZipEnumeration::~ZipEnumeration() {} +bool ZipEnumeration::hasMoreElements() { return (aIterator != rEntryHash.end()); } const ZipEntry* ZipEnumeration::nextElement() { |