summaryrefslogtreecommitdiff
path: root/include/svx/xpoly.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-25 14:58:59 +0200
committerNoel Grandin <noel@peralex.com>2016-08-29 09:23:46 +0200
commit05eed2888c8e33257137536453a84f4c458dd249 (patch)
tree8b7620784358b7703b318309f54ed5d7f7e17e2b /include/svx/xpoly.hxx
parente0ecd9b536ea60038795be31386f5d2785cb4d4e (diff)
cid#1371253 Missing move assignment operator
Change-Id: Ic95894569380927da5dbd9aba4844f17bbbf25f6
Diffstat (limited to 'include/svx/xpoly.hxx')
-rw-r--r--include/svx/xpoly.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/svx/xpoly.hxx b/include/svx/xpoly.hxx
index dc607df95b80..07e2f5bef6f0 100644
--- a/include/svx/xpoly.hxx
+++ b/include/svx/xpoly.hxx
@@ -126,6 +126,7 @@ protected:
public:
XPolyPolygon();
XPolyPolygon( const XPolyPolygon& rXPolyPoly );
+ XPolyPolygon( XPolyPolygon&& rXPolyPoly );
~XPolyPolygon();
@@ -144,6 +145,7 @@ public:
XPolygon& operator[]( sal_uInt16 nPos );
XPolyPolygon& operator=( const XPolyPolygon& rXPolyPoly );
+ XPolyPolygon& operator=( XPolyPolygon&& rXPolyPoly );
// transformations
void Distort(const Rectangle& rRefRect, const XPolygon& rDistortedRect);