diff options
author | Lei Zhang <thestig@chromium.org> | 2018-09-14 23:28:46 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-09-14 23:28:46 +0000 |
commit | a94b40f73598b84063d121e29164d71b5d977fcc (patch) | |
tree | ed6f1c015d2d3ae27df2a64ce29551486a108200 /xfa/fgas/font/cfgas_gefont.cpp | |
parent | 3db36ef21df4187877f50212aec43ad865abb42c (diff) | |
download | pdfium-a94b40f73598b84063d121e29164d71b5d977fcc.tar.xz |
Use pdfium::Optional in CFGAS_GEFont.
Change-Id: I1fe90d94ed782f59745dc47e38cda561c5b5ac47
Reviewed-on: https://pdfium-review.googlesource.com/42512
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fgas/font/cfgas_gefont.cpp')
-rw-r--r-- | xfa/fgas/font/cfgas_gefont.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fgas/font/cfgas_gefont.cpp b/xfa/fgas/font/cfgas_gefont.cpp index 6f33eb50fe..45119b7a98 100644 --- a/xfa/fgas/font/cfgas_gefont.cpp +++ b/xfa/fgas/font/cfgas_gefont.cpp @@ -121,8 +121,8 @@ WideString CFGAS_GEFont::GetFamilyName() const { uint32_t CFGAS_GEFont::GetFontStyles() const { ASSERT(m_pFont); - if (m_bUseLogFontStyle) - return m_dwLogFontStyle; + if (m_dwLogFontStyle.has_value()) + return m_dwLogFontStyle.value(); uint32_t dwStyles = 0; auto* pSubstFont = m_pFont->GetSubstFont(); |