From 316e482630d5f5d9084edd9725f98a0d89a5bbdf Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 16 Oct 2015 16:21:58 -0700 Subject: Don't bother passing -1 as the length to the CFX_ByteString ctor. R=tsepez@chromium.org Review URL: https://codereview.chromium.org/1406363002 . --- core/src/fxge/win32/fx_win32_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/fxge/win32/fx_win32_device.cpp') diff --git a/core/src/fxge/win32/fx_win32_device.cpp b/core/src/fxge/win32/fx_win32_device.cpp index a40e79bde7..93c2fd6836 100644 --- a/core/src/fxge/win32/fx_win32_device.cpp +++ b/core/src/fxge/win32/fx_win32_device.cpp @@ -122,7 +122,7 @@ FX_BOOL CFX_Win32FontInfo::IsSupportFontFormDiv(const LOGFONTA* plf) { } void CFX_Win32FontInfo::AddInstalledFont(const LOGFONTA* plf, FX_DWORD FontType) { - CFX_ByteString name(plf->lfFaceName, -1); + CFX_ByteString name(plf->lfFaceName); if (name[0] == '@') { return; } -- cgit v1.2.3