summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfwl_picturebox.cpp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-10-31 09:44:45 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-31 09:44:45 -0700
commit96c7b33510c5d48ef5707326de88b35dcd2e4b45 (patch)
tree197df79ed8b51d3b7778faa570f20d82e5bf8fda /xfa/fwl/core/cfwl_picturebox.cpp
parentfea997eb29e08a85038b5fc3b14bcaa35da369e4 (diff)
downloadpdfium-96c7b33510c5d48ef5707326de88b35dcd2e4b45.tar.xz
Remove unused parameter to CFWL_* Initialize methods.
This parameter is always nullptr, removed. Review-Url: https://codereview.chromium.org/2463073002
Diffstat (limited to 'xfa/fwl/core/cfwl_picturebox.cpp')
-rw-r--r--xfa/fwl/core/cfwl_picturebox.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/xfa/fwl/core/cfwl_picturebox.cpp b/xfa/fwl/core/cfwl_picturebox.cpp
index 8210db2562..de6bf737b6 100644
--- a/xfa/fwl/core/cfwl_picturebox.cpp
+++ b/xfa/fwl/core/cfwl_picturebox.cpp
@@ -12,18 +12,15 @@ CFWL_PictureBox::CFWL_PictureBox(const IFWL_App* app) : CFWL_Widget(app) {}
CFWL_PictureBox::~CFWL_PictureBox() {}
-void CFWL_PictureBox::Initialize(const CFWL_WidgetProperties* pProperties) {
+void CFWL_PictureBox::Initialize() {
ASSERT(!m_pIface);
- if (pProperties)
- *m_pProperties = *pProperties;
-
std::unique_ptr<IFWL_PictureBox> pPictureBox(new IFWL_PictureBox(
m_pApp, m_pProperties->MakeWidgetImpProperties(&m_PictureBoxDP)));
pPictureBox->Initialize();
m_pIface = std::move(pPictureBox);
- CFWL_Widget::Initialize(pProperties);
+ CFWL_Widget::Initialize();
}
IFWL_PictureBox* CFWL_PictureBox::GetWidget() {