From c7a4967d10fb9688f235baa8e57a1fb578f5387d Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 8 Sep 2022 11:06:15 -0400 Subject: Change reset to disconnect and clarify comments I decided that it's actually fine to copy a direct object to another QPDF. Even if we eventually prevent a QPDFObject from having multiple parents, this could happen if an object is moved. --- libqpdf/SparseOHArray.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libqpdf/SparseOHArray.cc') diff --git a/libqpdf/SparseOHArray.cc b/libqpdf/SparseOHArray.cc index a5a8e4e8..6ff02f6c 100644 --- a/libqpdf/SparseOHArray.cc +++ b/libqpdf/SparseOHArray.cc @@ -49,10 +49,10 @@ SparseOHArray::remove_last() } void -SparseOHArray::reset() +SparseOHArray::disconnect() { for (auto& iter: this->elements) { - QPDFObjectHandle::Resetter::reset(iter.second); + QPDFObjectHandle::DisconnectAccess::disconnect(iter.second); } } -- cgit v1.2.3-54-g00ecf