[Libreoffice-commits] core.git: drawinglayer/source
Stephan Bergmann
sbergman at redhat.com
Thu Aug 25 12:20:04 UTC 2016
drawinglayer/source/attribute/sdrlightingattribute3d.cxx | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit 269b58a04687f39042b57f5a3e59194b8ddfae58
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Thu Aug 25 14:19:41 2016 +0200
Missing operator definition
Change-Id: I39d3b68ca317a4a259b77532efc0897fc89a6fe9
diff --git a/drawinglayer/source/attribute/sdrlightingattribute3d.cxx b/drawinglayer/source/attribute/sdrlightingattribute3d.cxx
index 67f5037..f2705e9 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
More information about the Libreoffice-commits
mailing list