diff options
author | dsinclair <dsinclair@chromium.org> | 2016-12-14 12:54:30 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-14 12:54:30 -0800 |
commit | be5f0297256ba3c597dd32eb7eefef57fbd8e201 (patch) | |
tree | 8081390047955a1c97fb55680d7e633c284c3cc4 /xfa/fwl/cfwl_listitem.cpp | |
parent | f085db37c21ad2bd66e349f9307fc89b426217f5 (diff) | |
download | pdfium-be5f0297256ba3c597dd32eb7eefef57fbd8e201.tar.xz |
Remove unused CFWL_ListBox code
This CL removes states and settings from the CFWL_ListBox code which were never
enabled.
Review-Url: https://codereview.chromium.org/2576483002
Diffstat (limited to 'xfa/fwl/cfwl_listitem.cpp')
-rw-r--r-- | xfa/fwl/cfwl_listitem.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fwl/cfwl_listitem.cpp b/xfa/fwl/cfwl_listitem.cpp index 049548a1f5..a8ea8a6452 100644 --- a/xfa/fwl/cfwl_listitem.cpp +++ b/xfa/fwl/cfwl_listitem.cpp @@ -7,8 +7,7 @@ #include "xfa/fwl/cfwl_listitem.h" CFWL_ListItem::CFWL_ListItem(const CFX_WideString& text) - : m_dwStates(0), m_wsText(text), m_pDIB(nullptr), m_dwCheckState(0) { - m_rtCheckBox.Reset(); + : m_dwStates(0), m_wsText(text) { m_rtItem.Reset(); } |