diff options
author | dsinclair <dsinclair@chromium.org> | 2016-11-10 10:25:32 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-10 10:25:32 -0800 |
commit | 12f72bfc06198fcddf86f366adbbdeb152163b0e (patch) | |
tree | 61c3b3859382950e75fc8044639d3e9cea10cf16 /xfa/fwl/core/ifwl_edit.cpp | |
parent | be6b14899381d31628887d3cf4af086a3acb7eef (diff) | |
download | pdfium-12f72bfc06198fcddf86f366adbbdeb152163b0e.tar.xz |
Continue cleaning IFWL classes
More work cleaning up visiblity, unused methods and return values.
Review-Url: https://codereview.chromium.org/2489013002
Diffstat (limited to 'xfa/fwl/core/ifwl_edit.cpp')
-rw-r--r-- | xfa/fwl/core/ifwl_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fwl/core/ifwl_edit.cpp b/xfa/fwl/core/ifwl_edit.cpp index aa18d2f576..79896ea636 100644 --- a/xfa/fwl/core/ifwl_edit.cpp +++ b/xfa/fwl/core/ifwl_edit.cpp @@ -1931,7 +1931,7 @@ bool IFWL_Edit::OnScroll(IFWL_ScrollBar* pScrollBar, uint32_t dwCode, FX_FLOAT fPos) { CFX_SizeF fs; - pScrollBar->GetRange(fs.x, fs.y); + pScrollBar->GetRange(&fs.x, &fs.y); FX_FLOAT iCurPos = pScrollBar->GetPos(); FX_FLOAT fStep = pScrollBar->GetStepSize(); switch (dwCode) { |