diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-22 16:44:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-22 18:54:48 +0200 |
commit | 054166821842de6f25c3123fcc1976b3c9d1d69b (patch) | |
tree | 335d6a1b8ad16ccc37b472f08a20059ad1549906 /svx/inc/sdr | |
parent | 30067dafa988d4c6dd970c817eca283ac8946728 (diff) |
no need to use unique_ptr for Sdr3DObjectAttribute
it is already a COW type
Change-Id: Icc4173c5a61f5d819ce908f8a38c3efb29ebb1c8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120850
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/inc/sdr')
-rw-r--r-- | svx/inc/sdr/primitive3d/sdrattributecreator3d.hxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/svx/inc/sdr/primitive3d/sdrattributecreator3d.hxx b/svx/inc/sdr/primitive3d/sdrattributecreator3d.hxx index 327f7da1cbcb..3f517842741e 100644 --- a/svx/inc/sdr/primitive3d/sdrattributecreator3d.hxx +++ b/svx/inc/sdr/primitive3d/sdrattributecreator3d.hxx @@ -20,23 +20,19 @@ #ifndef INCLUDED_SVX_INC_SDR_PRIMITIVE3D_SDRATTRIBUTECREATOR3D_HXX #define INCLUDED_SVX_INC_SDR_PRIMITIVE3D_SDRATTRIBUTECREATOR3D_HXX +#include <drawinglayer/attribute/sdrobjectattribute3d.hxx> // predefines class SfxItemSet; - -namespace drawinglayer::attribute { - class Sdr3DObjectAttribute; -} - namespace basegfx { class B2DRange; } namespace drawinglayer::primitive2d - { +{ // SdrAttribute creators - attribute::Sdr3DObjectAttribute* createNewSdr3DObjectAttribute(const SfxItemSet& rSet); + attribute::Sdr3DObjectAttribute createNewSdr3DObjectAttribute(const SfxItemSet& rSet); // helpers |