aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Integer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Integer.cc')
-rw-r--r--libqpdf/QPDF_Integer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libqpdf/QPDF_Integer.cc b/libqpdf/QPDF_Integer.cc
index 24812573..cb9066bd 100644
--- a/libqpdf/QPDF_Integer.cc
+++ b/libqpdf/QPDF_Integer.cc
@@ -8,13 +8,13 @@ QPDF_Integer::QPDF_Integer(long long val) :
{
}
-std::shared_ptr<QPDFObject>
+std::shared_ptr<QPDFValueProxy>
QPDF_Integer::create(long long value)
{
return do_create(new QPDF_Integer(value));
}
-std::shared_ptr<QPDFObject>
+std::shared_ptr<QPDFValueProxy>
QPDF_Integer::shallowCopy()
{
return create(val);