diff options
author | Qin Zhao <zhaoqin@google.com> | 2015-10-21 17:57:48 -0400 |
---|---|---|
committer | Qin Zhao <zhaoqin@google.com> | 2015-10-21 17:57:48 -0400 |
commit | 59b10dc29ad515e26e96172e7e7d91122cb52a15 (patch) | |
tree | 8951e8a3ee9aebd0a978dc7d778d7d3ce42dd7a4 /xfa/src/fgas | |
parent | bf59a070593d079256161f6ff47148df309668c7 (diff) | |
download | pdfium-59b10dc29ad515e26e96172e7e7d91122cb52a15.tar.xz |
XFA: Fix two minor build errors on Windows
- remove unused local variable rtArrow in CFWL_WidgetTP::DrawArrow
- remove ~ in class IFX_FontMgr
BUG=none
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1416673005 .
Diffstat (limited to 'xfa/src/fgas')
-rw-r--r-- | xfa/src/fgas/include/fx_fnt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/src/fgas/include/fx_fnt.h b/xfa/src/fgas/include/fx_fnt.h index 4a10ee3e4a..4d60af22e2 100644 --- a/xfa/src/fgas/include/fx_fnt.h +++ b/xfa/src/fgas/include/fx_fnt.h @@ -138,7 +138,7 @@ class IFX_FontMgr { static IFX_FontMgr* Create(FX_LPEnumAllFonts pEnumerator,
FX_LPMatchFont pMatcher = NULL,
void* pUserData = NULL);
- ~virtual ~IFX_FontMgr() {}
+ virtual ~IFX_FontMgr() {}
virtual void Release() = 0;
virtual IFX_Font* GetDefFontByCodePage(
FX_WORD wCodePage,
|