diff options
Diffstat (limited to 'xfa/fgas/font/cfgas_gefont.cpp')
-rw-r--r-- | xfa/fgas/font/cfgas_gefont.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/xfa/fgas/font/cfgas_gefont.cpp b/xfa/fgas/font/cfgas_gefont.cpp index b1bd769336..151aec7d9e 100644 --- a/xfa/fgas/font/cfgas_gefont.cpp +++ b/xfa/fgas/font/cfgas_gefont.cpp @@ -61,9 +61,8 @@ CFGAS_GEFont::CFGAS_GEFont(CFGAS_FontMgr* pFontMgr) m_dwLogFontStyle(0), #endif m_pFont(nullptr), - m_pFontMgr(pFontMgr), m_bExternalFont(false), - m_pProvider(nullptr) { + m_pFontMgr(pFontMgr) { } CFGAS_GEFont::CFGAS_GEFont(const CFX_RetainPtr<CFGAS_GEFont>& src, @@ -74,10 +73,9 @@ CFGAS_GEFont::CFGAS_GEFont(const CFX_RetainPtr<CFGAS_GEFont>& src, m_dwLogFontStyle(0), #endif m_pFont(nullptr), - m_pSrcFont(src), - m_pFontMgr(src->m_pFontMgr), m_bExternalFont(false), - m_pProvider(nullptr) { + m_pSrcFont(src), + m_pFontMgr(src->m_pFontMgr) { ASSERT(m_pSrcFont->m_pFont); m_pFont = new CFX_Font; m_pFont->LoadClone(m_pSrcFont->m_pFont); |