summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-11-28 18:00:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2019-11-28 22:15:11 +0100
commitaec49ceb877f3f3d79a77e60022ab08655798020 (patch)
tree71a1df0ff69f45f13190c2977fd3d76159c04f25
parent5030be4e85179147476b1e441eb618fb6ed58235 (diff)
Drop unnecessarily user-provided ~SalLayoutGlyphsImpl
...thereby avoiding -Wdeprecated-copy-dtor when the implicitly-declared copy assignment op is used, but whose non-deleted definition was deprecated because of the user-provided dtor Change-Id: I9c4adc4b9ad0634c0afe5a4a707cc3697dbfae32 Reviewed-on: https://gerrit.libreoffice.org/84020 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--vcl/inc/impglyphitem.hxx1
-rw-r--r--vcl/source/gdi/impglyphitem.cxx2
2 files changed, 0 insertions, 3 deletions
diff --git a/vcl/inc/impglyphitem.hxx b/vcl/inc/impglyphitem.hxx
index b379674548d5..da56b660d7b6 100644
--- a/vcl/inc/impglyphitem.hxx
+++ b/vcl/inc/impglyphitem.hxx
@@ -119,7 +119,6 @@ class SalLayoutGlyphsImpl : public std::vector<GlyphItem>
friend class GenericSalLayout;
public:
- ~SalLayoutGlyphsImpl();
SalLayoutGlyphsImpl* clone(SalLayoutGlyphs& rGlyphs) const;
LogicalFontInstance& GetFont() const { return *m_rFontInstance; }
bool IsValid() const;
diff --git a/vcl/source/gdi/impglyphitem.cxx b/vcl/source/gdi/impglyphitem.cxx
index 64096020f172..3b52144769d0 100644
--- a/vcl/source/gdi/impglyphitem.cxx
+++ b/vcl/source/gdi/impglyphitem.cxx
@@ -53,8 +53,6 @@ void SalLayoutGlyphs::Invalidate()
m_pImpl->Invalidate();
}
-SalLayoutGlyphsImpl::~SalLayoutGlyphsImpl() {}
-
SalLayoutGlyphsImpl* SalLayoutGlyphsImpl::clone(SalLayoutGlyphs& rGlyphs) const
{
SalLayoutGlyphsImpl* pNew = new SalLayoutGlyphsImpl(rGlyphs, *m_rFontInstance);