From df448f5c421440c8884c87da6055c0b5cc62c5ca Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 4 Dec 2014 10:10:34 -0800 Subject: Remove needless casts of (narrow) string literals. Follow-up to work on (wide) string literals. R=bo_xu@foxitsoftware.com Review URL: https://codereview.chromium.org/751113003 --- xfa/src/fxfa/src/parser/xfa_script_imp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xfa/src/fxfa') diff --git a/xfa/src/fxfa/src/parser/xfa_script_imp.cpp b/xfa/src/fxfa/src/parser/xfa_script_imp.cpp index bdf59ca082..cd196f585d 100644 --- a/xfa/src/fxfa/src/parser/xfa_script_imp.cpp +++ b/xfa/src/fxfa/src/parser/xfa_script_imp.cpp @@ -728,8 +728,8 @@ IXFA_ScriptContext* XFA_ScriptContext_Create(CXFA_Document* pDocument) return FX_NEW CXFA_ScriptContext(pDocument); } static const XFA_JSBUILTININFO gs_JSBUILTINData[] = { - {0x8108b9a9, (FX_LPCSTR)"Number"}, - {0xe07e3fbe, (FX_LPCSTR)"Date"}, + {0x8108b9a9, "Number"}, + {0xe07e3fbe, "Date"}, }; const FX_INT32 g_iJSBuiltinCount = sizeof(XFA_JSBUILTININFO) / sizeof(XFA_JSBUILTININFO); XFA_LPCJSBUILTININFO XFA_GetJSBuiltinByHash(FX_UINT32 uHashCode) -- cgit v1.2.3