From 107e5981b45f8ee042f6fbf5e1aa84aa557f8989 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 30 Aug 2016 14:41:11 +0100 Subject: default dtors are fine here Change-Id: I503f954a2729aa2737d783ed8c72f62d8a68da4c --- vcl/source/gdi/bitmapex.cxx | 4 ---- vcl/source/gdi/gfxlink.cxx | 4 ---- 2 files changed, 8 deletions(-) (limited to 'vcl/source') diff --git a/vcl/source/gdi/bitmapex.cxx b/vcl/source/gdi/bitmapex.cxx index 2066c1b8eff2..53b38e41da7f 100644 --- a/vcl/source/gdi/bitmapex.cxx +++ b/vcl/source/gdi/bitmapex.cxx @@ -184,10 +184,6 @@ BitmapEx::BitmapEx( const Bitmap& rBmp, const Color& rTransparentColor ) : "BitmapEx::BitmapEx(): size mismatch for bitmap and alpha mask." ); } -BitmapEx::~BitmapEx() -{ -} - BitmapEx& BitmapEx::operator=( const BitmapEx& rBitmapEx ) { if( &rBitmapEx != this ) diff --git a/vcl/source/gdi/gfxlink.cxx b/vcl/source/gdi/gfxlink.cxx index d9680e610aef..cddf455af34a 100644 --- a/vcl/source/gdi/gfxlink.cxx +++ b/vcl/source/gdi/gfxlink.cxx @@ -45,10 +45,6 @@ GfxLink::GfxLink( std::unique_ptr pBuf, sal_uInt32 nSize, GfxLinkTy mpSwapInData = std::shared_ptr(pBuf.release(), pBuf.get_deleter()); // std::move(pBuf) does not compile on Jenkins MacOSX (24 May 2016) } -GfxLink::~GfxLink() -{ -} - bool GfxLink::IsEqual( const GfxLink& rGfxLink ) const { bool bIsEqual = false; -- cgit