diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-01-27 16:25:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-01-27 20:48:20 +0000 |
commit | f40aba6bf6ebe6a2b0da7d5e2fe53e470fe9e0f2 (patch) | |
tree | 551f3ab6931e939aea37e571d3abbe60670d4d94 /vcl/inc | |
parent | 15a2a39ce621dc78449f28301beee895e67aa64f (diff) |
coverity#1371303 Missing move assignment operator
Change-Id: I0dec3e192f3da895398a8b011c0e7275aab59d73
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/impgraph.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/inc/impgraph.hxx b/vcl/inc/impgraph.hxx index 041caf15f505..574a907346b5 100644 --- a/vcl/inc/impgraph.hxx +++ b/vcl/inc/impgraph.hxx @@ -55,6 +55,7 @@ private: ImpGraphic(); ImpGraphic( const ImpGraphic& rImpGraphic ); + ImpGraphic( ImpGraphic&& rImpGraphic ); ImpGraphic( const Bitmap& rBmp ); ImpGraphic( const BitmapEx& rBmpEx ); ImpGraphic(const SvgDataPtr& rSvgDataPtr); @@ -65,6 +66,7 @@ public: private: ImpGraphic& operator=( const ImpGraphic& rImpGraphic ); + ImpGraphic& operator=( ImpGraphic&& rImpGraphic ); bool operator==( const ImpGraphic& rImpGraphic ) const; bool operator!=( const ImpGraphic& rImpGraphic ) const { return !( *this == rImpGraphic ); } |