diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-06 14:41:50 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-06 14:41:50 +0000 |
commit | e7ccf36f0498b69850a1ab7774b981e63cc8009d (patch) | |
tree | 8814b45260982e36b1ff7a2ee505951387f7fca9 /fxjs/cjx_node.h | |
parent | 4e7a55ebf491df0999b9fb21aeee259495b943eb (diff) | |
download | pdfium-e7ccf36f0498b69850a1ab7774b981e63cc8009d.tar.xz |
Remove recursive paramter from CJX_Node::MoveBufferMapData
The recursive paramter is always true, so remove it and fixup code as
needed.
Change-Id: I18395c1bca415d8a5d85c1eee6a32870c5d7f7e3
Reviewed-on: https://pdfium-review.googlesource.com/17591
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r-- | fxjs/cjx_node.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h index 02091b924b..80ee6ae4b2 100644 --- a/fxjs/cjx_node.h +++ b/fxjs/cjx_node.h @@ -448,8 +448,7 @@ class CJX_Node : public CJX_Object { void MoveBufferMapData(CXFA_Node* pDstModule, void* pKey); void MoveBufferMapData(CXFA_Node* pSrcModule, CXFA_Node* pDstModule, - void* pKey, - bool bRecursive); + void* pKey); int32_t execSingleEventByName(const WideStringView& wsEventName, XFA_Element eType); |