From f40aba6bf6ebe6a2b0da7d5e2fe53e470fe9e0f2 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 27 Jan 2017 16:25:09 +0000 Subject: coverity#1371303 Missing move assignment operator Change-Id: I0dec3e192f3da895398a8b011c0e7275aab59d73 --- vcl/inc/impgraph.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vcl/inc/impgraph.hxx') 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 ); } -- cgit