aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <jberkenbilt@users.noreply.github.com>2023-09-02 21:03:03 +0200
committerGitHub <noreply@github.com>2023-09-02 21:03:03 +0200
commitc51bdeb19cee981cc3e6d308ecff4297a7ca29e7 (patch)
tree5b878a0d846a544cee2a61f0a12ae07570b28607 /include
parentec6784411d4f9fbf99a03f8e092e38fd3816049a (diff)
parent9a69cbba5b0502d0699d526860446791b9fef6f1 (diff)
downloadqpdf-c51bdeb19cee981cc3e6d308ecff4297a7ca29e7.tar.zst
Merge pull request #1017 from m-holger/mbox
Check for missing mediaboxes
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/QPDF.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh
index 2fd0f493..0281f5d0 100644
--- a/include/qpdf/QPDF.hh
+++ b/include/qpdf/QPDF.hh
@@ -1105,7 +1105,10 @@ class QPDF
// methods to support page handling
void getAllPagesInternal(
- QPDFObjectHandle cur_pages, QPDFObjGen::set& visited, QPDFObjGen::set& seen);
+ QPDFObjectHandle cur_pages,
+ QPDFObjGen::set& visited,
+ QPDFObjGen::set& seen,
+ bool media_box);
void insertPage(QPDFObjectHandle newpage, int pos);
void flattenPagesTree();
void insertPageobjToPage(QPDFObjectHandle const& obj, int pos, bool check_duplicate);