2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-03 19:00:51 +00:00

addFormField: update cache rather than invalidating

This commit is contained in:
Jay Berkenbilt 2021-02-21 05:46:12 -05:00
parent 901f1a788c
commit 15269f36d8

View File

@ -35,7 +35,6 @@ QPDFAcroFormDocumentHelper::hasAcroForm()
void
QPDFAcroFormDocumentHelper::addFormField(QPDFFormFieldObjectHelper ff)
{
invalidateCache();
auto acroform = this->qpdf.getRoot().getKey("/AcroForm");
if (! acroform.isDictionary())
{
@ -50,6 +49,9 @@ QPDFAcroFormDocumentHelper::addFormField(QPDFFormFieldObjectHelper ff)
acroform.replaceKey("/Fields", fields);
}
fields.appendItem(ff.getObjectHandle());
std::set<QPDFObjGen> visited;
traverseField(
ff.getObjectHandle(), QPDFObjectHandle::newNull(), 0, visited);
}
std::vector<QPDFFormFieldObjectHelper>