summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_tooltip.cpp
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-11-17 14:42:46 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-17 14:42:46 -0800
commit218a37894a58cd23eb764aec96ff21331b6e68cc (patch)
tree7753eac6286c90c3adcaeff0937e17e402b6f60d /xfa/fwl/core/ifwl_tooltip.cpp
parent483f3c485ac727cbf74c89e3912e5a4475d5f8f9 (diff)
downloadpdfium-218a37894a58cd23eb764aec96ff21331b6e68cc.tar.xz
Remove IFWL_ToolTipDP
There are no longer any classes which implement this interface. Remove interface. Review-Url: https://codereview.chromium.org/2511183002
Diffstat (limited to 'xfa/fwl/core/ifwl_tooltip.cpp')
-rw-r--r--xfa/fwl/core/ifwl_tooltip.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/xfa/fwl/core/ifwl_tooltip.cpp b/xfa/fwl/core/ifwl_tooltip.cpp
index 5ee594cc32..034ac56e05 100644
--- a/xfa/fwl/core/ifwl_tooltip.cpp
+++ b/xfa/fwl/core/ifwl_tooltip.cpp
@@ -50,10 +50,8 @@ void IFWL_ToolTip::GetWidgetRect(CFX_RectF& rect, bool bAutoSize) {
m_pProperties->m_pThemeProvider = GetAvailableTheme();
CFX_WideString wsCaption;
- IFWL_ToolTipDP* pData =
- static_cast<IFWL_ToolTipDP*>(m_pProperties->m_pDataProvider);
- if (pData)
- pData->GetCaption(this, wsCaption);
+ if (m_pProperties->m_pDataProvider)
+ m_pProperties->m_pDataProvider->GetCaption(this, wsCaption);
int32_t iLen = wsCaption.GetLength();
if (iLen > 0) {
@@ -154,16 +152,6 @@ void IFWL_ToolTip::UpdateTextOutStyles() {
m_dwTTOStyles &= ~FDE_TTOSTYLE_SingleLine;
}
-void IFWL_ToolTip::SetStates(uint32_t dwStates, bool bSet) {
- if ((dwStates & FWL_WGTSTATE_Invisible) && !bSet) {
- IFWL_ToolTipDP* pData =
- static_cast<IFWL_ToolTipDP*>(m_pProperties->m_pDataProvider);
- int32_t nAutoPopDelay = pData->GetAutoPopDelay(this);
- m_pTimerInfoHide = m_TimerHide.StartTimer(nAutoPopDelay, false);
- }
- IFWL_Widget::SetStates(dwStates, bSet);
-}
-
void IFWL_ToolTip::RefreshToolTipPos() {
if ((m_pProperties->m_dwStyleExes & FWL_STYLEEXT_TTP_NoAnchor) == 0) {
CFX_RectF rtPopup;