summaryrefslogtreecommitdiff
path: root/fpdfsdk/pwl/cpwl_combo_box.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-10-26 21:27:41 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-26 21:27:41 +0000
commit8fba261fb6584169c5788326dd49e91bc9babda5 (patch)
treec3a66ab343f20c15427f131c320d1e77afd7aac8 /fpdfsdk/pwl/cpwl_combo_box.cpp
parentd0ad4a785dbaf71ab0ccf626c7ef38c692484a60 (diff)
downloadpdfium-8fba261fb6584169c5788326dd49e91bc9babda5.tar.xz
Remove pParentWnd field entirely from CreateParams.
Put it into CPWL_Wnd directly, and set/clear it when a child is added/removed from a parent. Change-Id: I7a8cd0cf22dbd6173e64bec5d844df56ad373722 Reviewed-on: https://pdfium-review.googlesource.com/c/44692 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fpdfsdk/pwl/cpwl_combo_box.cpp')
-rw-r--r--fpdfsdk/pwl/cpwl_combo_box.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/fpdfsdk/pwl/cpwl_combo_box.cpp b/fpdfsdk/pwl/cpwl_combo_box.cpp
index db1def0758..70893ca437 100644
--- a/fpdfsdk/pwl/cpwl_combo_box.cpp
+++ b/fpdfsdk/pwl/cpwl_combo_box.cpp
@@ -277,7 +277,6 @@ void CPWL_ComboBox::CreateEdit(const CreateParams& cp) {
AddChild(m_pEdit.Get());
CreateParams ecp = cp;
- ecp.pParentWnd = this;
ecp.dwFlags = PWS_VISIBLE | PWS_CHILD | PWS_BORDER | PES_CENTER |
PES_AUTOSCROLL | PES_UNDO;
@@ -301,7 +300,6 @@ void CPWL_ComboBox::CreateButton(const CreateParams& cp) {
AddChild(m_pButton.Get());
CreateParams bcp = cp;
- bcp.pParentWnd = this;
bcp.dwFlags = PWS_VISIBLE | PWS_CHILD | PWS_BORDER | PWS_BACKGROUND;
bcp.sBackgroundColor = CFX_Color(CFX_Color::kRGB, 220.0f / 255.0f,
220.0f / 255.0f, 220.0f / 255.0f);
@@ -321,7 +319,6 @@ void CPWL_ComboBox::CreateListBox(const CreateParams& cp) {
AddChild(m_pList.Get());
CreateParams lcp = cp;
- lcp.pParentWnd = this;
lcp.dwFlags =
PWS_CHILD | PWS_BORDER | PWS_BACKGROUND | PLBS_HOVERSEL | PWS_VSCROLL;
lcp.nBorderStyle = BorderStyle::SOLID;