diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-10 19:44:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-10 19:44:16 +0000 |
commit | ccd7899b2d662c0a1be6cd52c6b6068472c27375 (patch) | |
tree | 13baee4d5893332917cae9f9e49d35473f086176 /xfa/fxfa/parser/cxfa_node.h | |
parent | 948879d23226aea31aa9ae5f6eb1fb8572f0fc05 (diff) | |
download | pdfium-ccd7899b2d662c0a1be6cd52c6b6068472c27375.tar.xz |
Rename GetOrCreateFont to GetOrCreateFontIfPossible
This CL makes it explicit that GetOrCreateFontIfPossible can return
nullptr.
Change-Id: Ib5be6995e4225ad596dfb78a94f0bc56802716cc
Reviewed-on: https://pdfium-review.googlesource.com/22674
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index 673c430dbb..69cd12c86b 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -241,7 +241,7 @@ class CXFA_Node : public CXFA_Object { CXFA_Caption* GetCaptionIfExists() const; CXFA_Font* GetFontIfExists() const; - CXFA_Font* GetOrCreateFont(); + CXFA_Font* GetOrCreateFontIfPossible(); float GetFontSize() const; FX_ARGB GetTextColor() const; float GetLineHeight() const; |