From 56c1019e694ba9c2d6624d3c11d99c22798ffdc8 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Tue, 15 Mar 2016 12:34:17 -0700 Subject: Remove CFX_DWordArray from Document.h Using a list is more appropriate, since we wish to delete from the middle. R=dsinclair@chromium.org Review URL: https://codereview.chromium.org/1780093003 . --- fpdfsdk/javascript/Document.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fpdfsdk/javascript/Document.h') diff --git a/fpdfsdk/javascript/Document.h b/fpdfsdk/javascript/Document.h index 8ae6c1d21d..03e885ce8e 100644 --- a/fpdfsdk/javascript/Document.h +++ b/fpdfsdk/javascript/Document.h @@ -275,7 +275,7 @@ class Document : public CJS_EmbedObj { CPDFSDK_Document* m_pDocument; CFX_WideString m_cwBaseURL; bool m_bDelay; - CFX_ArrayTemplate m_DelayData; + std::list> m_DelayData; }; class CJS_Document : public CJS_Object { -- cgit v1.2.3