1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:17:44 +00:00

LibPDF: Allow page objects to inherit the MediaBox and Resources entries

This commit is contained in:
Julian Offenhäuser 2022-08-25 10:36:36 +02:00 committed by Andreas Kling
parent 2f71e0f09a
commit 36f83cecab
2 changed files with 13 additions and 7 deletions

View file

@ -150,6 +150,8 @@ private:
PDFErrorOr<Destination> create_destination_from_parameters(NonnullRefPtr<ArrayObject>);
PDFErrorOr<NonnullRefPtr<Object>> get_inheritable_object(FlyString const& name, NonnullRefPtr<DictObject>);
NonnullRefPtr<DocumentParser> m_parser;
RefPtr<DictObject> m_catalog;
RefPtr<DictObject> m_trailer;