summaryrefslogtreecommitdiff
path: root/xfa
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2014-12-04 10:10:34 -0800
committerTom Sepez <tsepez@chromium.org>2014-12-04 10:10:34 -0800
commitdf448f5c421440c8884c87da6055c0b5cc62c5ca (patch)
tree6f15d3c7e65360ec430672d8ad851d158e333c25 /xfa
parent553efe2b5cf65959fa1e547ebb66ffc60b678028 (diff)
downloadpdfium-df448f5c421440c8884c87da6055c0b5cc62c5ca.tar.xz
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
Diffstat (limited to 'xfa')
-rw-r--r--xfa/src/fgas/src/font/fx_stdfontmgr.cpp16
-rw-r--r--xfa/src/fxfa/src/parser/xfa_script_imp.cpp4
2 files changed, 10 insertions, 10 deletions
diff --git a/xfa/src/fgas/src/font/fx_stdfontmgr.cpp b/xfa/src/fgas/src/font/fx_stdfontmgr.cpp
index ae59cab2e5..7f153b16d3 100644
--- a/xfa/src/fgas/src/font/fx_stdfontmgr.cpp
+++ b/xfa/src/fgas/src/font/fx_stdfontmgr.cpp
@@ -467,16 +467,16 @@ FX_LPEnumAllFonts FX_GetDefFontEnumerator()
#else
FX_LPCSTR g_FontFolders[] = {
#if _FXM_PLATFORM_ == _FXM_PLATFORM_LINUX_
- (FX_LPCSTR)"/usr/share/fonts",
- (FX_LPCSTR)"/usr/share/X11/fonts/Type1",
- (FX_LPCSTR)"/usr/share/X11/fonts/TTF",
- (FX_LPCSTR)"/usr/local/share/fonts",
+ "/usr/share/fonts",
+ "/usr/share/X11/fonts/Type1",
+ "/usr/share/X11/fonts/TTF",
+ "/usr/local/share/fonts",
#elif _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_
- (FX_LPCSTR)"~/Library/Fonts",
- (FX_LPCSTR)"/Library/Fonts",
- (FX_LPCSTR)"/System/Library/Fonts",
+ "~/Library/Fonts",
+ "/Library/Fonts",
+ "/System/Library/Fonts",
#elif _FXM_PLATFORM_ == _FXM_PLATFORM_ANDROID_
- (FX_LPCSTR)"/system/fonts",
+ "/system/fonts",
#endif
};
CFX_FontSourceEnum_File::CFX_FontSourceEnum_File()
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)