aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFXRefEntry.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/QPDFXRefEntry.hh')
-rw-r--r--include/qpdf/QPDFXRefEntry.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/qpdf/QPDFXRefEntry.hh b/include/qpdf/QPDFXRefEntry.hh
index c362cc97..f8d3f930 100644
--- a/include/qpdf/QPDFXRefEntry.hh
+++ b/include/qpdf/QPDFXRefEntry.hh
@@ -23,12 +23,12 @@ class QPDFXRefEntry
QPDF_DLL
QPDFXRefEntry();
QPDF_DLL
- QPDFXRefEntry(int type, off_t field1, int field2);
+ QPDFXRefEntry(int type, qpdf_offset_t field1, int field2);
QPDF_DLL
int getType() const;
QPDF_DLL
- off_t getOffset() const; // only for type 1
+ qpdf_offset_t getOffset() const; // only for type 1
QPDF_DLL
int getObjStreamNumber() const; // only for type 2
QPDF_DLL
@@ -36,7 +36,7 @@ class QPDFXRefEntry
private:
int type;
- off_t field1;
+ qpdf_offset_t field1;
int field2;
};