From 017052a077d8f900e3098b8f9115078a037ee805 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Tue, 28 Jun 2016 07:43:51 -0700 Subject: Change CXFA_Node::GetClassName to return CXFA_Node::GetClassName currently takes an out parameter and returns void. This CL updates the signature to return the value and require no parameters. Review-Url: https://codereview.chromium.org/2104963002 --- xfa/fxfa/parser/xfa_object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fxfa/parser/xfa_object.h') diff --git a/xfa/fxfa/parser/xfa_object.h b/xfa/fxfa/parser/xfa_object.h index fd73d8bb2e..a838b17578 100644 --- a/xfa/fxfa/parser/xfa_object.h +++ b/xfa/fxfa/parser/xfa_object.h @@ -84,7 +84,7 @@ class CXFA_Object : public CFXJSE_HostObject { const CXFA_NodeList* AsNodeList() const; XFA_Element GetElementType() const; - void GetClassName(CFX_WideStringC& wsName) const; + CFX_WideStringC GetClassName() const; uint32_t GetClassHashCode() const; void Script_ObjectClass_ClassName(CFXJSE_Value* pValue, FX_BOOL bSetting, -- cgit v1.2.3