aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFValue.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDFValue.cc')
-rw-r--r--libqpdf/QPDFValue.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libqpdf/QPDFValue.cc b/libqpdf/QPDFValue.cc
index 8a6222d2..957cc350 100644
--- a/libqpdf/QPDFValue.cc
+++ b/libqpdf/QPDFValue.cc
@@ -1,11 +1,11 @@
#include <qpdf/QPDFValue.hh>
-#include <qpdf/QPDFObject.hh>
+#include <qpdf/QPDFValueProxy.hh>
-std::shared_ptr<QPDFObject>
+std::shared_ptr<QPDFValueProxy>
QPDFValue::do_create(QPDFValue* object)
{
- std::shared_ptr<QPDFObject> obj(new QPDFObject());
+ std::shared_ptr<QPDFValueProxy> obj(new QPDFValueProxy());
obj->value = std::shared_ptr<QPDFValue>(object);
return obj;
}