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/fgas/src/font/fx_stdfontmgr.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'xfa/src/fgas') 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() -- cgit v1.2.3