diff options
Diffstat (limited to 'basegfx')
-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 225bebfe0f6b..150e7362fb85 100644 --- a/basegfx/source/tools/bgradient.cxx +++ b/basegfx/source/tools/bgradient.cxx @@ -213,7 +213,7 @@ void BColorStops::replaceStartColor(const BColor& rStart) aNewColorStops.insert(aNewColorStops.end(), a1stNonStartColor, end()); // assign & done - *this = aNewColorStops; + *this = std::move(aNewColorStops); } /* Tooling method that allows to replace the EndColor in a @@ -657,7 +657,7 @@ void BColorStops::doApplyAxial() } // apply color stops - *this = aNewColorStops; + *this = std::move(aNewColorStops); } void BColorStops::doApplySteps(sal_uInt16 nStepCount) |