| Index: xfa/fwl/core/fwl_widgetimp.cpp
|
| diff --git a/xfa/fwl/core/fwl_widgetimp.cpp b/xfa/fwl/core/fwl_widgetimp.cpp
|
| index 38e3a1ff282d860267bbdf713099cea4f7f3c4f8..113b628bcc7ecc9a7367cad003bfe9cfddc311d5 100644
|
| --- a/xfa/fwl/core/fwl_widgetimp.cpp
|
| +++ b/xfa/fwl/core/fwl_widgetimp.cpp
|
| @@ -103,11 +103,11 @@ void IFWL_Widget::SetEventKey(uint32_t key) {
|
| GetImpl()->SetEventKey(key);
|
| }
|
|
|
| -void* IFWL_Widget::GetLayoutItem() const {
|
| +CXFA_FFWidget* IFWL_Widget::GetLayoutItem() const {
|
| return GetImpl()->GetLayoutItem();
|
| }
|
|
|
| -void IFWL_Widget::SetLayoutItem(void* pItem) {
|
| +void IFWL_Widget::SetLayoutItem(CXFA_FFWidget* pItem) {
|
| GetImpl()->SetLayoutItem(pItem);
|
| }
|
|
|
| @@ -525,11 +525,11 @@ void CFWL_WidgetImp::SetEventKey(uint32_t key) {
|
| m_nEventKey = key;
|
| }
|
|
|
| -void* CFWL_WidgetImp::GetLayoutItem() const {
|
| +CXFA_FFWidget* CFWL_WidgetImp::GetLayoutItem() const {
|
| return m_pLayoutItem;
|
| }
|
|
|
| -void CFWL_WidgetImp::SetLayoutItem(void* pItem) {
|
| +void CFWL_WidgetImp::SetLayoutItem(CXFA_FFWidget* pItem) {
|
| m_pLayoutItem = pItem;
|
| }
|
|
|
|
|