summaryrefslogtreecommitdiff
path: root/package/inc/ZipEntry.hxx
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@suse.com>2012-09-21 13:09:29 +0100
committerMichael Meeks <michael.meeks@suse.com>2012-09-21 15:37:17 +0100
commit9b0198b2442bc749491d0f1e5e2c811346e5d568 (patch)
tree6af3f097947c8d5a4ebf5fd5599d1fe1fcc9e96c /package/inc/ZipEntry.hxx
parentb3603e0e0e5dbfbeaa2426c499e8f64be2d15765 (diff)
package: convert internal ZIP handling data-types to 64bit
Prepare for a ZIP64 implementation. Audit all "Size" property fetches through Anys. Audit all uses of nSize, nCompressedSize, nOffset through the code. Add FIXME64: comments to all points requiring future work.
Diffstat (limited to 'package/inc/ZipEntry.hxx')
-rw-r--r--package/inc/ZipEntry.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/inc/ZipEntry.hxx b/package/inc/ZipEntry.hxx
index 31469b07a7a8..98de664cce17 100644
--- a/package/inc/ZipEntry.hxx
+++ b/package/inc/ZipEntry.hxx
@@ -28,9 +28,9 @@ struct ZipEntry
sal_Int16 nMethod;
sal_Int32 nTime;
sal_Int32 nCrc;
- sal_Int32 nCompressedSize;
- sal_Int32 nSize;
- sal_Int32 nOffset;
+ sal_Int64 nCompressedSize;
+ sal_Int64 nSize;
+ sal_Int64 nOffset;
sal_Int16 nPathLen;
sal_Int16 nExtraLen;
::rtl::OUString sPath;