summaryrefslogtreecommitdiffstats
path: root/include/qpdf/QPDFObject.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/qpdf/QPDFObject.hh')
-rw-r--r--include/qpdf/QPDFObject.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/qpdf/QPDFObject.hh b/include/qpdf/QPDFObject.hh
index db6efa4c..a1930168 100644
--- a/include/qpdf/QPDFObject.hh
+++ b/include/qpdf/QPDFObject.hh
@@ -87,7 +87,7 @@ class QPDFObject
object_type_e
getTypeCode() const
{
- return value->getTypeCode();
+ return value->type_code;
}
// Return a string literal that describes the type, useful for
@@ -95,9 +95,8 @@ class QPDFObject
char const*
getTypeName() const
{
- return value->getTypeName();
+ return value->type_name;
}
-
void
setDescription(QPDF* qpdf, std::string const& description)
{