vcl/inc/impglyphitem.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 8883fd63e2b5a4bd5d3c8a364c0fa725db5920cb
Author:     Luboš Luňák <l.lu...@centrum.cz>
AuthorDate: Mon Nov 29 18:54:14 2021 +0100
Commit:     Luboš Luňák <l.lu...@collabora.com>
CommitDate: Tue Nov 30 10:38:31 2021 +0100

    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.lu...@collabora.com>

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());
 }

Reply via email to