summaryrefslogtreecommitdiffstats
path: root/package/source/zipapi/ZipEnumeration.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'package/source/zipapi/ZipEnumeration.cxx')
-rw-r--r--package/source/zipapi/ZipEnumeration.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/source/zipapi/ZipEnumeration.cxx b/package/source/zipapi/ZipEnumeration.cxx
index f5093f6f69d2..794ac1a7b9fc 100644
--- a/package/source/zipapi/ZipEnumeration.cxx
+++ b/package/source/zipapi/ZipEnumeration.cxx
@@ -29,12 +29,12 @@ ZipEnumeration::ZipEnumeration( EntryHash & rNewEntryHash)
ZipEnumeration::~ZipEnumeration()
{
}
-bool SAL_CALL ZipEnumeration::hasMoreElements()
+bool ZipEnumeration::hasMoreElements()
{
return (aIterator != rEntryHash.end());
}
-const ZipEntry* SAL_CALL ZipEnumeration::nextElement()
+const ZipEntry* ZipEnumeration::nextElement()
{
if (aIterator != rEntryHash.end())
return &((*aIterator++).second);