summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfwl_combolist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fwl/core/cfwl_combolist.cpp')
-rw-r--r--xfa/fwl/core/cfwl_combolist.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fwl/core/cfwl_combolist.cpp b/xfa/fwl/core/cfwl_combolist.cpp
index ad80ac0475..7532da26d7 100644
--- a/xfa/fwl/core/cfwl_combolist.cpp
+++ b/xfa/fwl/core/cfwl_combolist.cpp
@@ -87,7 +87,7 @@ void CFWL_ComboList::OnProcessMessage(CFWL_Message* pMessage) {
CFWL_ScrollBar* vertSB = GetVertScrollBar();
if (IsShowScrollBar(true) && vertSB) {
CFX_RectF rect;
- vertSB->GetWidgetRect(rect);
+ vertSB->GetWidgetRect(rect, false);
if (rect.Contains(pMsg->m_fx, pMsg->m_fy)) {
pMsg->m_fx -= rect.left;
pMsg->m_fy -= rect.top;
@@ -141,7 +141,7 @@ void CFWL_ComboList::OnDropListMouseMove(CFWL_MsgMouse* pMsg) {
CFWL_ScrollBar* vertSB = GetVertScrollBar();
if (IsShowScrollBar(true) && vertSB) {
CFX_RectF rect;
- vertSB->GetWidgetRect(rect);
+ vertSB->GetWidgetRect(rect, false);
if (rect.Contains(pMsg->m_fx, pMsg->m_fy))
return;
}
@@ -177,7 +177,7 @@ void CFWL_ComboList::OnDropListLButtonUp(CFWL_MsgMouse* pMsg) {
CFWL_ScrollBar* vertSB = GetVertScrollBar();
if (IsShowScrollBar(true) && vertSB) {
CFX_RectF rect;
- vertSB->GetWidgetRect(rect);
+ vertSB->GetWidgetRect(rect, false);
if (rect.Contains(pMsg->m_fx, pMsg->m_fy))
return;
}