diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-10 19:43:56 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-10 19:43:56 +0000 |
commit | 948879d23226aea31aa9ae5f6eb1fb8572f0fc05 (patch) | |
tree | e40d527c3f8757d8038ef7f7cd26dca7a83e3574 /xfa/fxfa/parser/cxfa_node.h | |
parent | e844cccc8419dae40720aad57c3bcd7ced14a925 (diff) | |
download | pdfium-948879d23226aea31aa9ae5f6eb1fb8572f0fc05.tar.xz |
Rename GetFont to GetFontIfExists
This CL makes it explicit that GetFont may return nullptr.
Change-Id: Icb7ec5ad4ed6c5f7a728230d1237898b8f2fd778
Reviewed-on: https://pdfium-review.googlesource.com/22673
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 57ab3cae8c..673c430dbb 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -240,7 +240,7 @@ class CXFA_Node : public CXFA_Object { CXFA_Border* GetOrCreateBorderIfPossible(); CXFA_Caption* GetCaptionIfExists() const; - CXFA_Font* GetFont() const; + CXFA_Font* GetFontIfExists() const; CXFA_Font* GetOrCreateFont(); float GetFontSize() const; FX_ARGB GetTextColor() const; |