summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdedtv2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/svdraw/svdedtv2.cxx')
-rw-r--r--svx/source/svdraw/svdedtv2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdedtv2.cxx b/svx/source/svdraw/svdedtv2.cxx
index 59c5bfe5af3e..92d0a6f5a76d 100644
--- a/svx/source/svdraw/svdedtv2.cxx
+++ b/svx/source/svdraw/svdedtv2.cxx
@@ -1074,7 +1074,7 @@ void SdrEditView::MergeMarkedObjects(SdrMergeMode eMode)
}
else
{
- aMergePolyPolygonA = aTmpPoly;
+ aMergePolyPolygonA = std::move(aTmpPoly);
}
}
else
@@ -1088,7 +1088,7 @@ void SdrEditView::MergeMarkedObjects(SdrMergeMode eMode)
}
else
{
- aMergePolyPolygonB = aTmpPoly;
+ aMergePolyPolygonB = std::move(aTmpPoly);
}
}
}