Index: xfa/fxfa/app/xfa_ffnotify.cpp |
diff --git a/xfa/fxfa/app/xfa_ffnotify.cpp b/xfa/fxfa/app/xfa_ffnotify.cpp |
index 9524a25b1a88685d4b99fd3f56f64d15c96dd088..1581a3027d1f380e910dc3fadbbb9d1930af4c9e 100644 |
--- a/xfa/fxfa/app/xfa_ffnotify.cpp |
+++ b/xfa/fxfa/app/xfa_ffnotify.cpp |
@@ -222,7 +222,7 @@ int32_t CXFA_FFNotify::ExecEventByDeepFirst(CXFA_Node* pFormNode, |
} |
return pDocView->ExecEventActivityByDeepFirst( |
pFormNode, eEventType, bIsFormReady, bRecursive, |
- pExclude ? pExclude->GetNode() : NULL); |
+ pExclude ? pExclude->GetNode() : nullptr); |
} |
void CXFA_FFNotify::AddCalcValidate(CXFA_Node* pNode) { |
CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); |
@@ -248,7 +248,7 @@ IXFA_AppProvider* CXFA_FFNotify::GetAppProvider() { |
} |
CXFA_FFWidgetHandler* CXFA_FFNotify::GetWidgetHandler() { |
CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); |
- return pDocView ? pDocView->GetWidgetHandler() : NULL; |
+ return pDocView ? pDocView->GetWidgetHandler() : nullptr; |
} |
CXFA_FFWidget* CXFA_FFNotify::GetHWidget(CXFA_LayoutItem* pLayoutItem) { |
return XFA_GetWidgetFromLayoutItem(pLayoutItem); |
@@ -300,10 +300,10 @@ void CXFA_FFNotify::RunSubformIndexChange(CXFA_Node* pSubformNode) { |
CXFA_Node* CXFA_FFNotify::GetFocusWidgetNode() { |
CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); |
if (!pDocView) { |
- return NULL; |
+ return nullptr; |
} |
CXFA_WidgetAcc* pAcc = pDocView->GetFocusWidgetAcc(); |
- return pAcc ? pAcc->GetNode() : NULL; |
+ return pAcc ? pAcc->GetNode() : nullptr; |
} |
void CXFA_FFNotify::SetFocusWidgetNode(CXFA_Node* pNode) { |
CXFA_FFDocView* pDocView = m_pDoc->GetDocView(); |