| Index: xfa/src/fwl/src/lightwidget/tooltipctrl.cpp
|
| diff --git a/xfa/src/fwl/src/lightwidget/tooltipctrl.cpp b/xfa/src/fwl/src/lightwidget/tooltipctrl.cpp
|
| index de616acd350a1105fc861698be0b538f8963167e..c2ee5636ce8710ba793ee674ab770b5ef8ee7ddc 100644
|
| --- a/xfa/src/fwl/src/lightwidget/tooltipctrl.cpp
|
| +++ b/xfa/src/fwl/src/lightwidget/tooltipctrl.cpp
|
| @@ -67,13 +67,13 @@ FWL_ERR CFWL_ToolTip::SetToolTipIconSize(CFX_SizeF fSize) {
|
| return FWL_ERR_Succeeded;
|
| }
|
| FWL_ERR CFWL_ToolTip::SetAnchor(const CFX_RectF& rtAnchor) {
|
| - return ((IFWL_ToolTip*)m_pIface)->SetAnchor(rtAnchor);
|
| + return static_cast<IFWL_ToolTip*>(m_pIface)->SetAnchor(rtAnchor);
|
| }
|
| FWL_ERR CFWL_ToolTip::Show() {
|
| - return ((IFWL_ToolTip*)m_pIface)->Show();
|
| + return static_cast<IFWL_ToolTip*>(m_pIface)->Show();
|
| }
|
| FWL_ERR CFWL_ToolTip::Hide() {
|
| - return ((IFWL_ToolTip*)m_pIface)->Hide();
|
| + return static_cast<IFWL_ToolTip*>(m_pIface)->Hide();
|
| }
|
| CFWL_ToolTip::CFWL_ToolTip() {}
|
| CFWL_ToolTip::~CFWL_ToolTip() {}
|
|
|