diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 13:14:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 13:14:46 +0200 |
commit | 3d8154789bca1f5a0901859e23bf5e4b458af1ff (patch) | |
tree | 6e019e54da8ea4bd6a465b7d77b0831ac521f557 /drawinglayer | |
parent | 69a5e1e562f7859a1c9745d578cd936a330b9aad (diff) |
cid#1371277 Missing move assignment operator
Change-Id: Ic737733f5951d5b21660a12a7a01202bd9bc303c
Diffstat (limited to 'drawinglayer')
-rw-r--r-- | drawinglayer/source/attribute/sdrlightingattribute3d.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx index d50094300f3b..67f5037e65d8 100644 --- a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx +++ b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx @@ -84,6 +84,11 @@ namespace drawinglayer { } + SdrLightingAttribute::SdrLightingAttribute(SdrLightingAttribute&& rCandidate) + : mpSdrLightingAttribute(std::move(rCandidate.mpSdrLightingAttribute)) + { + } + SdrLightingAttribute::~SdrLightingAttribute() { } |