diff options
-rw-r--r-- | vcl/inc/impglyphitem.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/inc/impglyphitem.hxx b/vcl/inc/impglyphitem.hxx index ca9f7cf5c052..b33ccbd37d7c 100644 --- a/vcl/inc/impglyphitem.hxx +++ b/vcl/inc/impglyphitem.hxx @@ -94,14 +94,14 @@ public: int xOffset() const { return m_nXOffset; } }; -VCL_DLLPUBLIC bool GlyphItem::GetGlyphBoundRect(const LogicalFontInstance* pFontInstance, - tools::Rectangle& rRect) const +bool GlyphItem::GetGlyphBoundRect(const LogicalFontInstance* pFontInstance, + tools::Rectangle& rRect) const { return pFontInstance->GetGlyphBoundRect(m_aGlyphId, rRect, IsVertical()); } -VCL_DLLPUBLIC bool GlyphItem::GetGlyphOutline(const LogicalFontInstance* pFontInstance, - basegfx::B2DPolyPolygon& rPoly) const +bool GlyphItem::GetGlyphOutline(const LogicalFontInstance* pFontInstance, + basegfx::B2DPolyPolygon& rPoly) const { return pFontInstance->GetGlyphOutline(m_aGlyphId, rPoly, IsVertical()); } |