diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-09-30 12:00:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-09-30 13:37:11 +0000 |
commit | 264f3830d70f683f2f11ebf344ffa233a454cea6 (patch) | |
tree | 3c022cb4b516fa0a5f20422e8e6c9b1a32de7a24 /vcl | |
parent | 966677bea718d95b3931c4ec86f5add1bca6cb1f (diff) |
coverity#1371302 Missing move assignment operator
Change-Id: I3df51235e9c8140ac8711b4bd7a9a677fe9ad9eb
Reviewed-on: https://gerrit.libreoffice.org/29402
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/alpha.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/source/gdi/alpha.cxx b/vcl/source/gdi/alpha.cxx index 01a57f61e0ed..d88d093e7545 100644 --- a/vcl/source/gdi/alpha.cxx +++ b/vcl/source/gdi/alpha.cxx @@ -38,6 +38,11 @@ AlphaMask::AlphaMask( const AlphaMask& rAlphaMask ) : { } +AlphaMask::AlphaMask( AlphaMask&& rAlphaMask ) : + Bitmap( std::move(rAlphaMask) ) +{ +} + AlphaMask::AlphaMask( const Size& rSizePixel, sal_uInt8* pEraseTransparency ) : Bitmap( rSizePixel, 8, &Bitmap::GetGreyPalette( 256 ) ) { |