diff options
author | dsinclair <dsinclair@chromium.org> | 2016-07-18 10:04:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-18 10:04:07 -0700 |
commit | efd5a99f98a263da9de52059681ff6ed27b2567c (patch) | |
tree | 83abdb823c7b2941f4891f4f27986576c740ab7b /fpdfsdk/fxedit/fxet_list.cpp | |
parent | d8f397878b5cd83ba4b75b3e69331986357301b9 (diff) | |
download | pdfium-efd5a99f98a263da9de52059681ff6ed27b2567c.tar.xz |
Removing default params from CFX_Edit.
This CL removes all of the default params from CFX_Edit. They are either
moved to the callsite or removed completely if unused.
Review-Url: https://codereview.chromium.org/2152473002
Diffstat (limited to 'fpdfsdk/fxedit/fxet_list.cpp')
-rw-r--r-- | fpdfsdk/fxedit/fxet_list.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fxedit/fxet_list.cpp b/fpdfsdk/fxedit/fxet_list.cpp index b4d5473f6c..77484e6a8a 100644 --- a/fpdfsdk/fxedit/fxet_list.cpp +++ b/fpdfsdk/fxedit/fxet_list.cpp @@ -14,7 +14,7 @@ CFX_ListItem::CFX_ListItem() : m_pEdit(new CFX_Edit), m_bSelected(FALSE), m_rcListItem(0.0f, 0.0f, 0.0f, 0.0f) { - m_pEdit->SetAlignmentV(1); + m_pEdit->SetAlignmentV(1, TRUE); m_pEdit->Initialize(); } |