From eba4d5b2b76cefde90cb3d6638c736f435023a45 Mon Sep 17 00:00:00 2001 From: Armin Le Grand Date: Fri, 6 Apr 2018 22:32:24 +0200 Subject: Revert "SOSAW080: Added first bunch of basic changes to helpers" This reverts commit 6c14c27c75a03e2363f2b363ddf0a6f2f46cfa91. --- include/svx/svdocirc.hxx | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'include/svx/svdocirc.hxx') diff --git a/include/svx/svdocirc.hxx b/include/svx/svdocirc.hxx index fc3045585aa6..d3bc9c2116f5 100644 --- a/include/svx/svdocirc.hxx +++ b/include/svx/svdocirc.hxx @@ -66,25 +66,14 @@ private: virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint) override; public: - SdrCircObj( - SdrModel& rSdrModel, - SdrObjKind eNewKind); // Circ, CArc, Sect or CCut - SdrCircObj( - SdrModel& rSdrModel, - SdrObjKind eNewKind, - const tools::Rectangle& rRect); + SdrCircObj(SdrObjKind eNewKind); // Circ, CArc, Sect or CCut + SdrCircObj(SdrObjKind eNewKind, const tools::Rectangle& rRect); // 0=0.00Deg=3h 9000=90.00Deg=12h 18000=180.00Deg=9h 27000=270.00Deg=6h // The circle is build up from StartAngle to EndWink anti-clockwise. // If nNewStartAngle==nNewEndWink, then arc has an angle of 0 degrees. // If nNewStartAngle+36000==nNewEndWink, then the arc has angle of 360 degrees. - SdrCircObj( - SdrModel& rSdrModel, - SdrObjKind eNewKind, - const tools::Rectangle& rRect, - long nNewStartAngle, - long nNewEndWink); - + SdrCircObj(SdrObjKind eNewKind, const tools::Rectangle& rRect, long nNewStartAngle, long nNewEndWink); virtual ~SdrCircObj() override; virtual void TakeObjInfo(SdrObjTransformInfoRec& rInfo) const override; @@ -94,11 +83,7 @@ public: virtual OUString TakeObjNameSingul() const override; virtual OUString TakeObjNamePlural() const override; - virtual SdrCircObj* Clone(SdrModel* pTargetModel = nullptr) const override; - - // implemented mainly for the purposes of Clone() - SdrCircObj& operator=(const SdrCircObj& rObj); - + virtual SdrCircObj* Clone() const override; virtual void RecalcSnapRect() override; virtual void NbcSetSnapRect(const tools::Rectangle& rRect) override; virtual basegfx::B2DPolyPolygon TakeXorPoly() const override; -- cgit