From 48ddd86c45b437151d660758befbebec242d407d Mon Sep 17 00:00:00 2001 From: tsepez Date: Mon, 6 Jun 2016 10:51:58 -0700 Subject: Make GetDevFont() return a CFX_Font* instead of void* Then we can remove a bunch of casts. Review-Url: https://codereview.chromium.org/2033243004 --- xfa/fgas/font/fgas_font.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fgas/font/fgas_font.h') diff --git a/xfa/fgas/font/fgas_font.h b/xfa/fgas/font/fgas_font.h index ea82ec1526..5d3a44092d 100644 --- a/xfa/fgas/font/fgas_font.h +++ b/xfa/fgas/font/fgas_font.h @@ -88,7 +88,7 @@ class IFGAS_Font { virtual int32_t GetItalicAngle() const = 0; virtual void Reset() = 0; virtual IFGAS_Font* GetSubstFont(int32_t iGlyphIndex) const = 0; - virtual void* GetDevFont() const = 0; + virtual CFX_Font* GetDevFont() const = 0; virtual void SetFontProvider(CXFA_PDFFontMgr* pProvider) = 0; #if _FXM_PLATFORM_ != _FXM_PLATFORM_WINDOWS_ virtual void SetLogicalFontStyle(uint32_t dwLogFontStyle) = 0; -- cgit v1.2.3