diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-24 13:31:52 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-24 13:31:52 -0800 |
commit | 55dd8546ebc365b3778b40ba9d82879f581503e1 (patch) | |
tree | 7a1b79587122d31fd2ba91c75b7ad1d166116b8c /fpdfsdk/src/fsdk_baseannot.cpp | |
parent | abea9d857e8e197d0095940f882b0db6a785d825 (diff) | |
download | pdfium-55dd8546ebc365b3778b40ba9d82879f581503e1.tar.xz |
Add "Underlying types" to master.
Change some master code to line up better with XFA, so
that the XFA changes are additive when possible, rather
than replacements.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1468253005 .
Diffstat (limited to 'fpdfsdk/src/fsdk_baseannot.cpp')
-rw-r--r-- | fpdfsdk/src/fsdk_baseannot.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fpdfsdk/src/fsdk_baseannot.cpp b/fpdfsdk/src/fsdk_baseannot.cpp index 8cd3df97c0..e124ace2a3 100644 --- a/fpdfsdk/src/fsdk_baseannot.cpp +++ b/fpdfsdk/src/fsdk_baseannot.cpp @@ -976,6 +976,10 @@ void CPDFSDK_BAAnnot::Annot_OnDraw(CFX_RenderDevice* pDevice, return; } +UnderlyingPageType* CPDFSDK_Annot::GetUnderlyingPage() { + return GetPDFPage(); +} + CPDF_Page* CPDFSDK_Annot::GetPDFPage() { if (m_pPageView) return m_pPageView->GetPDFPage(); |