summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@centrum.cz>2021-11-29 18:54:14 +0100
committerLuboš Luňák <l.lunak@collabora.com>2021-11-30 10:38:31 +0100
commit8883fd63e2b5a4bd5d3c8a364c0fa725db5920cb (patch)
tree7105179f0cd92c5eb7da193e41ebd4ad7efd17f5 /vcl
parentc73aa8bd54ca5d1aba5fa0c1e15837b77c673861 (diff)
remove duplicated VCL_DLLPUBLIC
The class itself is already VCL_DLLPUBLIC. Change-Id: Ic1c352ebce8fbee4602ddc84b2db22eb0038b5e9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126075 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/inc/impglyphitem.hxx8
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());
}