diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-15 12:00:41 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-15 12:00:41 -0800 |
commit | 05b9a317d66c29f740e4b0e89ea87143a11d61fc (patch) | |
tree | 642bca12314f6730071c9d6fd0d871e73f9b0b29 /xfa/fwl/core/fwl_noteimp.cpp | |
parent | 70c4afd5c3c5c44cd24f814423a23a6ef05bba02 (diff) | |
download | pdfium-05b9a317d66c29f740e4b0e89ea87143a11d61fc.tar.xz |
Cleaning methods and visibility in cfwl_* files.
First pass at cleaning up visibility, return values and const'ness of
cfwl_* class.
Review-Url: https://codereview.chromium.org/2501743002
Diffstat (limited to 'xfa/fwl/core/fwl_noteimp.cpp')
-rw-r--r-- | xfa/fwl/core/fwl_noteimp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fwl/core/fwl_noteimp.cpp b/xfa/fwl/core/fwl_noteimp.cpp index c17105a3f7..f04d38d81b 100644 --- a/xfa/fwl/core/fwl_noteimp.cpp +++ b/xfa/fwl/core/fwl_noteimp.cpp @@ -386,10 +386,10 @@ bool CFWL_NoteDriver::DoKey(CFWL_MsgKey* pMsg, IFWL_Widget* pMessageForm) { pFocus = nullptr; } bool bFind = false; - IFWL_Widget* pNextTabStop = pWidgetMgr->nextTab(pForm, pFocus, bFind); + IFWL_Widget* pNextTabStop = pWidgetMgr->NextTab(pForm, pFocus, bFind); if (!pNextTabStop) { bFind = false; - pNextTabStop = pWidgetMgr->nextTab(pForm, nullptr, bFind); + pNextTabStop = pWidgetMgr->NextTab(pForm, nullptr, bFind); } if (pNextTabStop == pFocus) { return true; |