| Index: xfa/src/fwl/src/core/fwl_widgetimp.cpp
|
| diff --git a/xfa/src/fwl/src/core/fwl_widgetimp.cpp b/xfa/src/fwl/src/core/fwl_widgetimp.cpp
|
| index 135a3e1b80e5395e55d3a786ea51e24171f8c31f..2e6d5b30ed518c4e1816b658739bb234d3cedf35 100644
|
| --- a/xfa/src/fwl/src/core/fwl_widgetimp.cpp
|
| +++ b/xfa/src/fwl/src/core/fwl_widgetimp.cpp
|
| @@ -131,7 +131,7 @@ FWL_ERR CFWL_WidgetImp::Initialize() {
|
| IFWL_AdapterThreadMgr* pAdapterThread = pAdapter->GetThreadMgr();
|
| if (!pAdapterThread)
|
| return FWL_ERR_Indefinite;
|
| - SetOwnerThread((CFWL_NoteThreadImp*)pAdapterThread->GetCurrentThread());
|
| + SetOwnerThread((CFWL_NoteThread*)pAdapterThread->GetCurrentThread());
|
| IFWL_Widget* pParent = m_pProperties->m_pParent;
|
| m_pWidgetMgr->InsertWidget(pParent, m_pInterface);
|
| if (!IsChild()) {
|
| @@ -488,7 +488,7 @@ IFWL_WidgetDelegate* CFWL_WidgetImp::SetDelegate(
|
| IFWL_NoteThread* CFWL_WidgetImp::GetOwnerThread() const {
|
| return (IFWL_NoteThread*)m_pOwnerThread;
|
| }
|
| -FWL_ERR CFWL_WidgetImp::SetOwnerThread(CFWL_NoteThreadImp* pOwnerThread) {
|
| +FWL_ERR CFWL_WidgetImp::SetOwnerThread(CFWL_NoteThread* pOwnerThread) {
|
| m_pOwnerThread = pOwnerThread;
|
| return FWL_ERR_Succeeded;
|
| }
|
|
|