diff options
Diffstat (limited to 'xfa/fwl/core/ifwl_widget.h')
-rw-r--r-- | xfa/fwl/core/ifwl_widget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/xfa/fwl/core/ifwl_widget.h b/xfa/fwl/core/ifwl_widget.h index d1284b1c92..36c587b3ea 100644 --- a/xfa/fwl/core/ifwl_widget.h +++ b/xfa/fwl/core/ifwl_widget.h @@ -111,6 +111,10 @@ class IFWL_Widget : public IFWL_WidgetDelegate { return m_pProperties->m_pThemeProvider; } + IFWL_DataProvider* GetDataProvider() const { + return m_pProperties->m_pDataProvider; + } + void SetDelegate(IFWL_WidgetDelegate* delegate) { m_pDelegate = delegate; } IFWL_WidgetDelegate* GetDelegate() { return m_pDelegate ? m_pDelegate : this; |