diff options
author | Lei Zhang <thestig@chromium.org> | 2015-10-30 11:18:29 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-10-30 11:18:29 -0700 |
commit | c91d5c276b6b986f645d34a0e583fbe4f73e74bc (patch) | |
tree | 3aa5e597124540674f929d527649c7f38e10657b /fpdfsdk/include | |
parent | 9f4def68601ec75b85b92077c521b9423b4f7f00 (diff) | |
download | pdfium-c91d5c276b6b986f645d34a0e583fbe4f73e74bc.tar.xz |
Fix incorrect CPDFSDK_PageView::CountAnnots(). (try 2)
The original XFA version was correct, and the master version here is
wrong. The two versions are now in sync, but incorrect.
So we need to fix this here and then merge to XFA again.
Also fix what are now incorrect uses of CountAnnots() and do some
cleanups.
BUG=543049
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1413973011 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/fsdk_mgr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/fsdk_mgr.h b/fpdfsdk/include/fsdk_mgr.h index fa2860aa00..2c063ed5a8 100644 --- a/fpdfsdk/include/fsdk_mgr.h +++ b/fpdfsdk/include/fsdk_mgr.h @@ -308,7 +308,7 @@ class CPDFSDK_PageView final { CPDFSDK_Annot* AddAnnot(const FX_CHAR* lpSubType, CPDF_Dictionary* pDict); CPDFSDK_Annot* AddAnnot(CPDF_Annot* pPDFAnnot); FX_BOOL DeleteAnnot(CPDFSDK_Annot* pAnnot); - int CountAnnots() const; + size_t CountAnnots() const; CPDFSDK_Annot* GetAnnot(size_t nIndex); CPDFSDK_Annot* GetAnnotByDict(CPDF_Dictionary* pDict); CPDF_Page* GetPDFPage() { return m_page; } |