From 269b58a04687f39042b57f5a3e59194b8ddfae58 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 25 Aug 2016 14:19:41 +0200 Subject: Missing operator definition Change-Id: I39d3b68ca317a4a259b77532efc0897fc89a6fe9 --- drawinglayer/source/attribute/sdrlightingattribute3d.cxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'drawinglayer') diff --git a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx index 67f5037e65d8..f2705e998a2a 100644 --- a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx +++ b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx @@ -104,6 +104,12 @@ namespace drawinglayer return *this; } + SdrLightingAttribute& SdrLightingAttribute::operator=(SdrLightingAttribute&& rCandidate) + { + mpSdrLightingAttribute = std::move(rCandidate.mpSdrLightingAttribute); + return *this; + } + bool SdrLightingAttribute::operator==(const SdrLightingAttribute& rCandidate) const { // tdf#87509 default attr is always != non-default attr, even with same values -- cgit