Index: fpdfsdk/fxedit/include/fxet_list.h |
diff --git a/fpdfsdk/fxedit/include/fxet_list.h b/fpdfsdk/fxedit/include/fxet_list.h |
index 58aa94c5b6302bf9530371685c2ec662eebaf3f5..ab4605169b4f73f8e7ba7cb8b291009172d99412 100644 |
--- a/fpdfsdk/fxedit/include/fxet_list.h |
+++ b/fpdfsdk/fxedit/include/fxet_list.h |
@@ -193,7 +193,7 @@ class CLST_ArrayTemplate : public CFX_ArrayTemplate<TYPE> { |
TYPE GetAt(int32_t nIndex) const { |
if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) |
return CFX_ArrayTemplate<TYPE>::GetAt(nIndex); |
- return NULL; |
+ return nullptr; |
} |
void RemoveAt(int32_t nIndex) { |
if (nIndex >= 0 && nIndex < CFX_ArrayTemplate<TYPE>::GetSize()) |