diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-04-30 21:54:13 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-30 21:54:13 +0000 |
commit | 3d3c2dea9fcb7372e195f453a5e4ec3fd47392b9 (patch) | |
tree | 443142fe49a3c509d7664b8c3a4b2901278f6066 /xfa/fgas/font/cfgas_gefont.h | |
parent | 39e7e610d8d697f05134890446caf4101539a032 (diff) | |
download | pdfium-3d3c2dea9fcb7372e195f453a5e4ec3fd47392b9.tar.xz |
Change out parameter of CFGAS_GEFont::GetCharWidth to pointer.chromium/3416
Change-Id: I1e04c7645b2238d292a6a8eb5fb5fa365fa958f5
Reviewed-on: https://pdfium-review.googlesource.com/31752
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fgas/font/cfgas_gefont.h')
-rw-r--r-- | xfa/fgas/font/cfgas_gefont.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fgas/font/cfgas_gefont.h b/xfa/fgas/font/cfgas_gefont.h index b1d3a0e34d..ab72f1356f 100644 --- a/xfa/fgas/font/cfgas_gefont.h +++ b/xfa/fgas/font/cfgas_gefont.h @@ -38,7 +38,7 @@ class CFGAS_GEFont : public Retainable { CFGAS_FontMgr* pFontMgr); uint32_t GetFontStyles() const; - bool GetCharWidth(wchar_t wUnicode, int32_t& iWidth); + bool GetCharWidth(wchar_t wUnicode, int32_t* pWidth); int32_t GetGlyphIndex(wchar_t wUnicode); int32_t GetAscent() const; int32_t GetDescent() const; |