diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 14:41:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-30 19:26:41 +0100 |
commit | 107e5981b45f8ee042f6fbf5e1aa84aa557f8989 (patch) | |
tree | 42ab56c795d84901c6fd66fe479160e8ff309d64 /vcl/source | |
parent | a7b18aaa46c225d3546ad52aab0c460092c8edb0 (diff) |
default dtors are fine here
Change-Id: I503f954a2729aa2737d783ed8c72f62d8a68da4c
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/bitmapex.cxx | 4 | ||||
-rw-r--r-- | vcl/source/gdi/gfxlink.cxx | 4 |
2 files changed, 0 insertions, 8 deletions
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<sal_uInt8[]> pBuf, sal_uInt32 nSize, GfxLinkTy mpSwapInData = std::shared_ptr<sal_uInt8>(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; |