diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-03 11:25:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-03 11:25:00 -0700 |
commit | e5393582a7f5dbb655a97d64531638b302ee684e (patch) | |
tree | ac5503a23a1bcfb2c9d49042227468cc587d1f35 /fpdfsdk/cpdfsdk_pageview.h | |
parent | c9347083c8b813454e971ce9e648cf7d8b25d60b (diff) | |
download | pdfium-e5393582a7f5dbb655a97d64531638b302ee684e.tar.xz |
Remove unused CPDFSDK_PageView::ClearFXAnnots
Method is not called, removing.
Review-Url: https://codereview.chromium.org/2391663002
Diffstat (limited to 'fpdfsdk/cpdfsdk_pageview.h')
-rw-r--r-- | fpdfsdk/cpdfsdk_pageview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fpdfsdk/cpdfsdk_pageview.h b/fpdfsdk/cpdfsdk_pageview.h index ba6001b5e9..fe40300c23 100644 --- a/fpdfsdk/cpdfsdk_pageview.h +++ b/fpdfsdk/cpdfsdk_pageview.h @@ -92,9 +92,10 @@ class CPDFSDK_PageView final : public CPDF_Page::View { int GetPageIndex() const; void LoadFXAnnots(); - void ClearFXAnnots(); + void SetValid(FX_BOOL bValid) { m_bValid = bValid; } FX_BOOL IsValid() { return m_bValid; } + void SetLock(FX_BOOL bLocked) { m_bLocked = bLocked; } FX_BOOL IsLocked() { return m_bLocked; } #ifndef PDF_ENABLE_XFA |