Skip to content

Commit

Permalink
Store file size as 64bit number
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-kocic committed May 9, 2016
1 parent c644f7d commit 4e0d58c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kiv/src/enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ struct ArchiveFileInfo {
// /// Compressed file size.
// quint32 compressedSize;
/// Uncompressed file size.
const quint32 m_uncompressedSize;
const qint64 m_uncompressedSize;
// /// Disk number start.
// quint16 diskNumberStart;
// /// Internal file attributes.
Expand All @@ -109,7 +109,7 @@ struct ArchiveFileInfo {
// QByteArray extra;
explicit ArchiveFileInfo(const QString name,
const QDateTime dateTime,
const quint32 uncompressedSize)
const qint64 uncompressedSize)
: m_name(name)
, m_dateTime(dateTime)
, m_uncompressedSize(uncompressedSize)
Expand Down

0 comments on commit 4e0d58c

Please sign in to comment.