| Index: xfa/fwl/core/ifwl_listbox.cpp
|
| diff --git a/xfa/fwl/core/ifwl_listbox.cpp b/xfa/fwl/core/ifwl_listbox.cpp
|
| index e468602cdfc46e72cc62f55ee4ac343863599708..041e0080656f6831281393de9edb8a8eb19a76ec 100644
|
| --- a/xfa/fwl/core/ifwl_listbox.cpp
|
| +++ b/xfa/fwl/core/ifwl_listbox.cpp
|
| @@ -235,14 +235,6 @@ void IFWL_ListBox::GetItemText(CFWL_ListItem* pItem, CFX_WideString& wsText) {
|
| pData->GetItemText(this, pItem, wsText);
|
| }
|
|
|
| -void IFWL_ListBox::GetScrollPos(FX_FLOAT& fPos, bool bVert) {
|
| - if ((bVert && IsShowScrollBar(true)) || (!bVert && IsShowScrollBar(false))) {
|
| - IFWL_ScrollBar* pScrollBar =
|
| - bVert ? m_pVertScrollBar.get() : m_pHorzScrollBar.get();
|
| - fPos = pScrollBar->GetPos();
|
| - }
|
| -}
|
| -
|
| CFWL_ListItem* IFWL_ListBox::GetItem(CFWL_ListItem* pItem, uint32_t dwKeyCode) {
|
| CFWL_ListItem* hRet = nullptr;
|
| switch (dwKeyCode) {
|
|
|