diff options
author | Noel Grandin <noel@peralex.com> | 2016-08-25 12:58:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-08-25 12:58:57 +0200 |
commit | 877dfa3783316c4c2850b0e5bd3837765d7c12c2 (patch) | |
tree | f71d8986d1eebeeb47783316682aa37f4cbba89e /include/drawinglayer | |
parent | 37ffcb1ce74d08ccbca1545714bbf81669cd3d03 (diff) |
cid#1371288 Missing move assignment operator
Change-Id: I5181c76f558e1806de01f21422c715cc93f3cb3d
Diffstat (limited to 'include/drawinglayer')
-rw-r--r-- | include/drawinglayer/attribute/fillhatchattribute.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drawinglayer/attribute/fillhatchattribute.hxx b/include/drawinglayer/attribute/fillhatchattribute.hxx index 40e350a003f0..1d08d60e54c2 100644 --- a/include/drawinglayer/attribute/fillhatchattribute.hxx +++ b/include/drawinglayer/attribute/fillhatchattribute.hxx @@ -72,7 +72,9 @@ namespace drawinglayer bool bFillBackground); FillHatchAttribute(); FillHatchAttribute(const FillHatchAttribute& rCandidate); + FillHatchAttribute(FillHatchAttribute&& rCandidate); FillHatchAttribute& operator=(const FillHatchAttribute& rCandidate); + FillHatchAttribute& operator=(FillHatchAttribute&& rCandidate); ~FillHatchAttribute(); // checks if the incarnation is default constructed |