diff options
author | Lei Zhang <thestig@chromium.org> | 2017-08-15 11:18:19 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-15 18:31:30 +0000 |
commit | 33c03005b8872b11f07afaba49e874f918aaa333 (patch) | |
tree | da33c1190a924ea3d97dc7984b5a6c5aaa1d89ac /fpdfsdk/pwl/cpwl_wnd.cpp | |
parent | 130bf6fc898e9ad42e3f63d90e400172de4fa65e (diff) | |
download | pdfium-33c03005b8872b11f07afaba49e874f918aaa333.tar.xz |
Remove default argument from CPWL_Wnd::InvalidateRect().
Change-Id: I529925b10fa43d4c9c6c9d398265d2ae7eccf93d
Reviewed-on: https://pdfium-review.googlesource.com/10853
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/pwl/cpwl_wnd.cpp')
-rw-r--r-- | fpdfsdk/pwl/cpwl_wnd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/pwl/cpwl_wnd.cpp b/fpdfsdk/pwl/cpwl_wnd.cpp index c7bf23ce60..37d0bc4cf2 100644 --- a/fpdfsdk/pwl/cpwl_wnd.cpp +++ b/fpdfsdk/pwl/cpwl_wnd.cpp @@ -584,7 +584,7 @@ void CPWL_Wnd::SetVisible(bool bVisible) { if (bVisible != m_bVisible) { m_bVisible = bVisible; RePosChildWnd(); - InvalidateRect(); + InvalidateRect(nullptr); } } |