| Index: xfa/fwl/basewidget/fwl_scrollbarimp.cpp | 
| diff --git a/xfa/fwl/basewidget/fwl_scrollbarimp.cpp b/xfa/fwl/basewidget/fwl_scrollbarimp.cpp | 
| index 69c28959d90bb8de42dca3efd7cf66d302a9d205..0db7c29e9dce7edc060dc5aecc4e3f6039f19871 100644 | 
| --- a/xfa/fwl/basewidget/fwl_scrollbarimp.cpp | 
| +++ b/xfa/fwl/basewidget/fwl_scrollbarimp.cpp | 
| @@ -636,21 +636,20 @@ int32_t CFWL_ScrollBarImpDelegate::OnProcessMessage(CFWL_Message* pMessage) { | 
| CFWL_MessageType dwMsgCode = pMessage->GetClassID(); | 
| if (dwMsgCode == CFWL_MessageType::Mouse) { | 
| CFWL_MsgMouse* pMsg = static_cast<CFWL_MsgMouse*>(pMessage); | 
| -    uint32_t dwCmd = pMsg->m_dwCmd; | 
| -    switch (dwCmd) { | 
| -      case FWL_MSGMOUSECMD_LButtonDown: { | 
| +    switch (pMsg->m_dwCmd) { | 
| +      case FWL_MouseCommand::LeftButtonDown: { | 
| OnLButtonDown(pMsg->m_dwFlags, pMsg->m_fx, pMsg->m_fy); | 
| break; | 
| } | 
| -      case FWL_MSGMOUSECMD_LButtonUp: { | 
| +      case FWL_MouseCommand::LeftButtonUp: { | 
| OnLButtonUp(pMsg->m_dwFlags, pMsg->m_fx, pMsg->m_fy); | 
| break; | 
| } | 
| -      case FWL_MSGMOUSECMD_MouseMove: { | 
| +      case FWL_MouseCommand::Move: { | 
| OnMouseMove(pMsg->m_dwFlags, pMsg->m_fx, pMsg->m_fy); | 
| break; | 
| } | 
| -      case FWL_MSGMOUSECMD_MouseLeave: { | 
| +      case FWL_MouseCommand::Leave: { | 
| OnMouseLeave(); | 
| break; | 
| } | 
|  |