diff options
Diffstat (limited to 'basegfx/source/tools/bgradient.cxx')
-rw-r--r-- | basegfx/source/tools/bgradient.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/tools/bgradient.cxx b/basegfx/source/tools/bgradient.cxx index bac738ad3221..d80f52974a35 100644 --- a/basegfx/source/tools/bgradient.cxx +++ b/basegfx/source/tools/bgradient.cxx @@ -560,7 +560,7 @@ void BColorStops::removeSpaceAtStart(double fOffset) } } - *this = aNewStops; + *this = std::move(aNewStops); } // try to detect if an empty/no-color-change area exists @@ -730,7 +730,7 @@ void BColorStops::doApplySteps(sal_uInt16 nStepCount) } // apply the change to color stops - *this = aNewColorStops; + *this = std::move(aNewColorStops); } void BColorStops::tryToApplyBColorModifierStack(const BColorModifierStack& rBColorModifierStack) |