aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Dictionary.cc
diff options
context:
space:
mode:
authorm-holger <m-holger@kubitscheck.org>2022-08-02 22:35:04 +0200
committerm-holger <m-holger@kubitscheck.org>2022-09-01 15:19:34 +0200
commit431bd666c0504af0c8a016a96a73b7efbf9737c9 (patch)
tree26fcbcb8e62fcb87aa1a694fad5172f92c6eab7c /libqpdf/QPDF_Dictionary.cc
parent43983109f25ba12db3fded12d0ea9a991b8a1d5c (diff)
downloadqpdf-431bd666c0504af0c8a016a96a73b7efbf9737c9.tar.zst
Split QPDFObject into QPDFObject and QPDFValue
Diffstat (limited to 'libqpdf/QPDF_Dictionary.cc')
-rw-r--r--libqpdf/QPDF_Dictionary.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/libqpdf/QPDF_Dictionary.cc b/libqpdf/QPDF_Dictionary.cc
index 60b2339f..7f374f81 100644
--- a/libqpdf/QPDF_Dictionary.cc
+++ b/libqpdf/QPDF_Dictionary.cc
@@ -1,7 +1,6 @@
#include <qpdf/QPDF_Dictionary.hh>
#include <qpdf/QPDF_Name.hh>
-#include <qpdf/QPDF_Null.hh>
QPDF_Dictionary::QPDF_Dictionary(
std::map<std::string, QPDFObjectHandle> const& items) :
@@ -58,10 +57,10 @@ QPDF_Dictionary::getJSON(int json_version)
return j;
}
-QPDFObject::object_type_e
+qpdf_object_type_e
QPDF_Dictionary::getTypeCode() const
{
- return QPDFObject::ot_dictionary;
+ return ::ot_dictionary;
}
char const*