From 53ed03d9d865c312fdaa4434b83ed60619881226 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Thu, 8 Dec 2016 12:37:53 -0800 Subject: Remove unused list data pointer The list item data pointer was never assigned. Removed pointer and referencing code. Review-Url: https://codereview.chromium.org/2563693003 --- xfa/fwl/cfwl_combobox.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'xfa/fwl/cfwl_combobox.cpp') diff --git a/xfa/fwl/cfwl_combobox.cpp b/xfa/fwl/cfwl_combobox.cpp index 90366979f4..83c3d4a1d9 100644 --- a/xfa/fwl/cfwl_combobox.cpp +++ b/xfa/fwl/cfwl_combobox.cpp @@ -162,14 +162,6 @@ void CFWL_ComboBox::DrawWidget(CFX_Graphics* pGraphics, param.m_matrix.Concat(*pMatrix); param.m_rtPart = rtTextBk; - if (m_iCurSel >= 0) { - if (void* p = m_pListBox->GetItemData( - m_pListBox.get(), - m_pListBox->GetItem(m_pListBox.get(), m_iCurSel))) { - param.m_pData = p; - } - } - if (m_pProperties->m_dwStates & FWL_WGTSTATE_Disabled) { param.m_dwStates = CFWL_PartState_Disabled; } else if ((m_pProperties->m_dwStates & FWL_WGTSTATE_Focused) && -- cgit v1.2.3