diff options
-rw-r--r-- | drawinglayer/source/attribute/sdrlineattribute.cxx | 11 | ||||
-rw-r--r-- | drawinglayer/source/attribute/strokeattribute.cxx | 11 |
2 files changed, 18 insertions, 4 deletions
diff --git a/drawinglayer/source/attribute/sdrlineattribute.cxx b/drawinglayer/source/attribute/sdrlineattribute.cxx index 21da3a249aed..1da16445188b 100644 --- a/drawinglayer/source/attribute/sdrlineattribute.cxx +++ b/drawinglayer/source/attribute/sdrlineattribute.cxx @@ -124,7 +124,10 @@ namespace drawinglayer { } - SdrLineAttribute::SdrLineAttribute(SdrLineAttribute&& rCandidate) = default; + SdrLineAttribute::SdrLineAttribute(SdrLineAttribute&& rCandidate) + : mpSdrLineAttribute(std::move(rCandidate.mpSdrLineAttribute)) + { + } SdrLineAttribute::~SdrLineAttribute() { @@ -141,7 +144,11 @@ namespace drawinglayer return *this; } - SdrLineAttribute& SdrLineAttribute::operator=(SdrLineAttribute&& rCandidate) = default; + SdrLineAttribute& SdrLineAttribute::operator=(SdrLineAttribute&& rCandidate) + { + mpSdrLineAttribute = std::move(rCandidate.mpSdrLineAttribute); + return *this; + } bool SdrLineAttribute::operator==(const SdrLineAttribute& rCandidate) const { diff --git a/drawinglayer/source/attribute/strokeattribute.cxx b/drawinglayer/source/attribute/strokeattribute.cxx index 7c152c8479de..05e9ba509e26 100644 --- a/drawinglayer/source/attribute/strokeattribute.cxx +++ b/drawinglayer/source/attribute/strokeattribute.cxx @@ -92,7 +92,10 @@ namespace drawinglayer { } - StrokeAttribute::StrokeAttribute(StrokeAttribute&& rCandidate) = default; + StrokeAttribute::StrokeAttribute(StrokeAttribute&& rCandidate) + : mpStrokeAttribute(std::move(rCandidate.mpStrokeAttribute)) + { + } StrokeAttribute::~StrokeAttribute() { @@ -109,7 +112,11 @@ namespace drawinglayer return *this; } - StrokeAttribute& StrokeAttribute::operator=(StrokeAttribute&& rCandidate) = default; + StrokeAttribute& StrokeAttribute::operator=(StrokeAttribute&& rCandidate) + { + mpStrokeAttribute = std::move(rCandidate.mpStrokeAttribute); + return *this; + } bool StrokeAttribute::operator==(const StrokeAttribute& rCandidate) const { |