Kaydet (Commit) 269b58a0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Missing operator definition

Change-Id: I39d3b68ca317a4a259b77532efc0897fc89a6fe9
üst 228d0950
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment