1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibPDF: Rename m_disable_encryption to m_enable_encryption

Double negation is confusing.

No behavior change.
This commit is contained in:
Nico Weber 2023-07-11 10:16:16 -04:00 committed by Andreas Kling
parent 92d2895057
commit 63670f27de
2 changed files with 4 additions and 4 deletions

View file

@ -72,7 +72,7 @@ protected:
Reader m_reader;
WeakPtr<Document> m_document;
Vector<Reference> m_current_reference_stack;
bool m_disable_encryption { false };
bool m_enable_encryption { true };
};
};