diff options
author | Khaled Hosny <khaled@aliftype.com> | 2022-09-30 09:55:52 +0200 |
---|---|---|
committer | خالد حسني <khaled@aliftype.com> | 2022-09-30 12:37:57 +0200 |
commit | e6a46b235997c309a926bb0573de625a89b29b8c (patch) | |
tree | 2027910316f46a6f0b25e258755754c60f9c9682 /include/vcl/vcllayout.hxx | |
parent | a091ae213eb8d64c21361969775b76e7911cc1af (diff) |
vcl: No need to get font face from GetNextGlyphs()
We can take it from the font instance.
Change-Id: I54c507d498c58e271c479b0a615b165345a1c33b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140788
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@aliftype.com>
Diffstat (limited to 'include/vcl/vcllayout.hxx')
-rw-r--r-- | include/vcl/vcllayout.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/vcllayout.hxx b/include/vcl/vcllayout.hxx index 5030ccadb2b4..07918325c1a6 100644 --- a/include/vcl/vcllayout.hxx +++ b/include/vcl/vcllayout.hxx @@ -102,8 +102,7 @@ public: // methods using glyph indexing virtual bool GetNextGlyph(const GlyphItem** pGlyph, DevicePoint& rPos, int& nStart, - const LogicalFontInstance** ppGlyphFont = nullptr, - const vcl::font::PhysicalFontFace** pFallbackFont = nullptr) const = 0; + const LogicalFontInstance** ppGlyphFont = nullptr) const = 0; virtual bool GetOutline(basegfx::B2DPolyPolygonVector&) const; bool GetBoundRect(tools::Rectangle&) const; |