diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-07-11 09:19:59 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-07-11 09:32:08 +0200 |
commit | d01e35e1203c85334c504ea7b313db199973c7ae (patch) | |
tree | 81863a6bde8aa05eedcf944c9578a514d40c65e7 /include | |
parent | d98c817cc71e62a2beecc7142062f9ef33a7149b (diff) |
Clean up usage of 'this' and constness.
Change-Id: I35085bebdec47598a5f927924b429b02b44c0e65
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdoashp.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/svdoashp.hxx b/include/svx/svdoashp.hxx index fbf2c1256523..169dd13b9dca 100644 --- a/include/svx/svdoashp.hxx +++ b/include/svx/svdoashp.hxx @@ -105,13 +105,13 @@ public: // #i47293# // SVX_DLLPRIVATE std::vector< com::sun::star::uno::Reference< com::sun::star::drawing::XCustomShapeHandle > > GetFixedInteractionHandle() const; - SVX_DLLPRIVATE std::vector< SdrCustomShapeInteraction > GetInteractionHandles( const SdrObjCustomShape* pCustomShape ) const; + SVX_DLLPRIVATE std::vector< SdrCustomShapeInteraction > GetInteractionHandles() const; SVX_DLLPRIVATE void DragCreateObject( SdrDragStat& rDrag ); - SVX_DLLPRIVATE void DragResizeCustomShape( const Rectangle& rNewRect, SdrObjCustomShape* pObj ) const; + SVX_DLLPRIVATE void DragResizeCustomShape( const Rectangle& rNewRect ); SVX_DLLPRIVATE void DragMoveCustomShapeHdl( const Point aDestination, - const sal_uInt16 nCustomShapeHdlNum, SdrObjCustomShape* pObj, bool bMoveCalloutRectangle ) const; + const sal_uInt16 nCustomShapeHdlNum, bool bMoveCalloutRectangle ); // #i37011# centralize throw-away of render geometry void InvalidateRenderGeometry(); @@ -128,7 +128,7 @@ public: const SdrObject* GetSdrObjectShadowFromCustomShape() const; bool GetTextBounds( Rectangle& rTextBound ) const; bool IsTextPath() const; - static basegfx::B2DPolyPolygon GetLineGeometry( const SdrObjCustomShape* pCustomShape, const bool bBezierAllowed ); + basegfx::B2DPolyPolygon GetLineGeometry( const bool bBezierAllowed ) const; protected: // #115391# new method for SdrObjCustomShape and SdrTextObj to correctly handle and set |