| Index: core/include/fpdfdoc/fpdf_doc.h
|
| diff --git a/core/include/fpdfdoc/fpdf_doc.h b/core/include/fpdfdoc/fpdf_doc.h
|
| index 13c52433cde856da472c11439d1a32a41b28b2f2..b2d309e007d7f6cfb00397e2f705d46b7cca01d2 100644
|
| --- a/core/include/fpdfdoc/fpdf_doc.h
|
| +++ b/core/include/fpdfdoc/fpdf_doc.h
|
| @@ -132,14 +132,13 @@ class CPDF_OCContext : public IPDF_OCContext {
|
| enum UsageType { View = 0, Design, Print, Export };
|
|
|
| CPDF_OCContext(CPDF_Document* pDoc, UsageType eUsageType = View);
|
| -
|
| - virtual ~CPDF_OCContext();
|
| + ~CPDF_OCContext() override;
|
|
|
| CPDF_Document* GetDocument() const { return m_pDocument; }
|
|
|
| UsageType GetUsageType() const { return m_eUsageType; }
|
|
|
| - FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCGDict);
|
| + FX_BOOL CheckOCGVisible(const CPDF_Dictionary* pOCGDict) override;
|
|
|
| void ResetOCContext();
|
|
|
| @@ -589,7 +588,6 @@ class CPDF_DefaultAppearance {
|
| class CPDF_InterForm : public CFX_PrivateData {
|
| public:
|
| CPDF_InterForm(CPDF_Document* pDocument, FX_BOOL bUpdateAP);
|
| -
|
| ~CPDF_InterForm();
|
|
|
| static void EnableUpdateAP(FX_BOOL bUpdateAP);
|
|
|