diff options
author | Lei Zhang <thestig@chromium.org> | 2016-02-23 11:21:48 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-02-23 11:21:48 -0800 |
commit | 9976672977d39fc5fe9df2b0110ed977d79609a8 (patch) | |
tree | 192a3238fa9587c77843812dc90f1884dc506689 /fpdfsdk/src/formfiller/FFL_IFormFiller.cpp | |
parent | d21cddaa7548584bfcebefe9a03e857fee3a846b (diff) | |
download | pdfium-9976672977d39fc5fe9df2b0110ed977d79609a8.tar.xz |
Remove uses of this->foo.
R=weili@chromium.org
Review URL: https://codereview.chromium.org/1722913002 .
Diffstat (limited to 'fpdfsdk/src/formfiller/FFL_IFormFiller.cpp')
-rw-r--r-- | fpdfsdk/src/formfiller/FFL_IFormFiller.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp b/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp index 7049fe6a97..a5100f6904 100644 --- a/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp +++ b/fpdfsdk/src/formfiller/FFL_IFormFiller.cpp @@ -821,8 +821,7 @@ void CFFL_IFormFiller::OnPopupPreOpen(void* pPrivateData, FX_BOOL bTempReset = FALSE; FX_BOOL bTempExit = FALSE; - this->OnPreOpen(pData->pWidget, pData->pPageView, bTempReset, bTempExit, - nFlag); + OnPreOpen(pData->pWidget, pData->pPageView, bTempReset, bTempExit, nFlag); if (bTempReset || bTempExit) { bExit = TRUE; @@ -838,8 +837,7 @@ void CFFL_IFormFiller::OnPopupPostOpen(void* pPrivateData, FX_BOOL bTempReset = FALSE; FX_BOOL bTempExit = FALSE; - this->OnPostOpen(pData->pWidget, pData->pPageView, bTempReset, bTempExit, - nFlag); + OnPostOpen(pData->pWidget, pData->pPageView, bTempReset, bTempExit, nFlag); if (bTempReset || bTempExit) { bExit = TRUE; |