diff options
author | tsepez <tsepez@chromium.org> | 2017-01-11 14:03:54 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2017-01-11 14:03:54 -0800 |
commit | d805eec52f6ac574918748c4270873e7e5cde596 (patch) | |
tree | 3dec3245638de8600bd9a213887be92cc53a1d76 /fpdfsdk/cpdfsdk_baannot.h | |
parent | 5e3121beff936df1b0af3749447eeda1666d5d76 (diff) | |
download | pdfium-d805eec52f6ac574918748c4270873e7e5cde596.tar.xz |
Use observed pointers in CPDFSDK_AnnotIterator.chromium/2979
Rename to CPDFSDK_AnnotIteration, as it is now an ordered set of
annots, and not the iterator itself.
Review-Url: https://codereview.chromium.org/2626073005
Diffstat (limited to 'fpdfsdk/cpdfsdk_baannot.h')
-rw-r--r-- | fpdfsdk/cpdfsdk_baannot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/cpdfsdk_baannot.h b/fpdfsdk/cpdfsdk_baannot.h index 10f27e6dec..2da5723eb4 100644 --- a/fpdfsdk/cpdfsdk_baannot.h +++ b/fpdfsdk/cpdfsdk_baannot.h @@ -100,7 +100,7 @@ class CPDFSDK_BAAnnot : public CPDFSDK_Annot { void SetOpenState(bool bState); protected: - CPDF_Annot* m_pAnnot; + CPDF_Annot* const m_pAnnot; }; #endif // FPDFSDK_CPDFSDK_BAANNOT_H_ |