From 9fff1c76c1083a5cc0543911811e36007a38aa3a Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 22 Jun 2018 17:46:05 +0000 Subject: Avoid some duplicate const/non-const getters. Getters should nearly always be const when they return a non-const pointer to an unowned object. Saves a bit of code along the way. Grep for similar occurrences and add "const". Change-Id: I492bf962a7d62452fa40310146226dc0c8ebb753 Reviewed-on: https://pdfium-review.googlesource.com/35890 Commit-Queue: Tom Sepez Reviewed-by: Lei Zhang --- fpdfsdk/formfiller/cffl_formfiller.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fpdfsdk/formfiller') diff --git a/fpdfsdk/formfiller/cffl_formfiller.h b/fpdfsdk/formfiller/cffl_formfiller.h index bad42ecaf4..95f5ac8427 100644 --- a/fpdfsdk/formfiller/cffl_formfiller.h +++ b/fpdfsdk/formfiller/cffl_formfiller.h @@ -143,7 +143,7 @@ class CFFL_FormFiller : public CPWL_Wnd::ProviderIface, CPDFSDK_PageView* GetCurPageView(bool renew); void SetChangeMark(); - CPDFSDK_Annot* GetSDKAnnot() { return m_pWidget.Get(); } + CPDFSDK_Annot* GetSDKAnnot() const { return m_pWidget.Get(); } protected: using CFFL_PageView2PDFWindow = std::map; -- cgit v1.2.3