summaryrefslogtreecommitdiff
path: root/core/src/fxge/win32
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2015-10-16 16:29:59 -0700
committerLei Zhang <thestig@chromium.org>2015-10-16 16:29:59 -0700
commit0c6e6824979c9a3e7006a925f7b307db04342146 (patch)
tree12be3af6450fbb37cc5c12247eea888c9cf09d11 /core/src/fxge/win32
parentc40ccaff017691b7d31e0597863bfb954aebd739 (diff)
downloadpdfium-0c6e6824979c9a3e7006a925f7b307db04342146.tar.xz
Merge to XFA: Don't bother passing -1 as the length to the CFX_ByteString ctor.
TBR=tsepez@chromium.org Review URL: https://codereview.chromium.org/1406363002 . (cherry picked from commit 316e482630d5f5d9084edd9725f98a0d89a5bbdf) Review URL: https://codereview.chromium.org/1406303006 .
Diffstat (limited to 'core/src/fxge/win32')
-rw-r--r--core/src/fxge/win32/fx_win32_device.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}