diff options
Diffstat (limited to 'xfa/fwl/core/cfwl_widget.cpp')
-rw-r--r-- | xfa/fwl/core/cfwl_widget.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/core/cfwl_widget.cpp index 1dbe4451c7..5ea5aebead 100644 --- a/xfa/fwl/core/cfwl_widget.cpp +++ b/xfa/fwl/core/cfwl_widget.cpp @@ -43,21 +43,11 @@ void CFWL_Widget::GetWidgetRect(CFX_RectF& rect, bool bAutoSize) { m_pIface->GetWidgetRect(rect, bAutoSize); } -void CFWL_Widget::GetGlobalRect(CFX_RectF& rect) { - if (m_pIface) - m_pIface->GetGlobalRect(rect); -} - void CFWL_Widget::SetWidgetRect(const CFX_RectF& rect) { if (m_pIface) m_pIface->SetWidgetRect(rect); } -void CFWL_Widget::GetClientRect(CFX_RectF& rect) { - if (m_pIface) - m_pIface->GetClientRect(rect); -} - void CFWL_Widget::ModifyStyles(uint32_t dwStylesAdded, uint32_t dwStylesRemoved) { if (m_pIface) |