summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-09-04 15:26:12 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-09-04 16:53:19 +0100
commitc5653039412114a14eb0b53e6e1ca26efaf468cd (patch)
tree065094d5c161602f59a2f7c367347a2c4c265be3 /include
parent27be36b66cc55886c47f0f424a354056392f75d0 (diff)
coverity#1371167 Missing move assignment operator
Change-Id: I95bafeb32b0444bf387efc1f6a56018975f09f29
Diffstat (limited to 'include')
-rw-r--r--include/vcl/image.hxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/image.hxx b/include/vcl/image.hxx
index 910bb0255fd4..1803c9bc0838 100644
--- a/include/vcl/image.hxx
+++ b/include/vcl/image.hxx
@@ -62,6 +62,7 @@ public:
bool operator!() const { return !mpImplData; }
Image& operator=( const Image& rImage );
+ Image& operator=( Image&& rImage );
bool operator==( const Image& rImage ) const;
bool operator!=( const Image& rImage ) const { return !(Image::operator==( rImage )); }