diff options
author | Noel <noel.grandin@collabora.co.uk> | 2021-02-09 13:42:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-10 07:35:41 +0100 |
commit | 09cb778b6eb7d3a5b9029965a1320b49c90e7295 (patch) | |
tree | 63d75bc66ddbe4af5f6a52f4a0d65e9b199dbae7 /include/svx/cube3d.hxx | |
parent | ccdee8eebaa56619248e35001017226eecfe4e83 (diff) |
clean up SdrObject cloning
using operator= implies that overwriting an SdrObject is a
useful operation, but that is not at all true - they are typically
linked into and referred to by many other things.
So rather use a copy-constructor.
Also clean up a couple of weird "do some stuff after the clone"
code into the main copy constructor.
Change-Id: Iefc1481b527602748b5f3abed06e7cca66c0581c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110633
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/cube3d.hxx')
-rw-r--r-- | include/svx/cube3d.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/svx/cube3d.hxx b/include/svx/cube3d.hxx index 515e8331c044..9842b26f0e55 100644 --- a/include/svx/cube3d.hxx +++ b/include/svx/cube3d.hxx @@ -65,6 +65,7 @@ public: const E3dDefaultAttributes& rDefault, const basegfx::B3DPoint& aPos, const basegfx::B3DVector& r3DSize); + E3dCubeObj(SdrModel& rSdrModel, E3dCubeObj const &); E3dCubeObj(SdrModel& rSdrModel); virtual SdrObjKind GetObjIdentifier() const override; @@ -72,9 +73,6 @@ public: virtual E3dCubeObj* CloneSdrObject(SdrModel& rTargetModel) const override; - // implemented mainly for the purposes of Clone() - E3dCubeObj& operator=(const E3dCubeObj& rObj); - // Set local parameters with geometry recreation void SetCubePos(const basegfx::B3DPoint& rNew); const basegfx::B3DPoint& GetCubePos() const { return aCubePos; } |