summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/animations/motionpathtag.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/animations/motionpathtag.cxx')
-rw-r--r--sd/source/ui/animations/motionpathtag.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/sd/source/ui/animations/motionpathtag.cxx b/sd/source/ui/animations/motionpathtag.cxx
index 1b7014c43593..bd918c151acf 100644
--- a/sd/source/ui/animations/motionpathtag.cxx
+++ b/sd/source/ui/animations/motionpathtag.cxx
@@ -248,7 +248,6 @@ public:
virtual ~SdPathHdl();
virtual void CreateB2dIAObject() SAL_OVERRIDE;
virtual bool IsFocusHdl() const SAL_OVERRIDE;
- virtual Pointer GetSdrDragPointer() const;
virtual bool isMarkable() const SAL_OVERRIDE;
private:
@@ -315,27 +314,6 @@ bool SdPathHdl::isMarkable() const
return false;
}
-Pointer SdPathHdl::GetSdrDragPointer() const
-{
- PointerStyle eStyle = POINTER_NOTALLOWED;
- if( mxTag.is() )
- {
- if( mxTag->isSelected() )
- {
- if( !mxTag->getView().IsFrameDragSingles() && mxTag->getView().IsInsObjPointMode() )
- eStyle = POINTER_CROSS;
- else
- eStyle = POINTER_MOVE;
- }
- else
- {
- eStyle = POINTER_ARROW;
-
- }
- }
- return Pointer( eStyle );
-}
-
MotionPathTag::MotionPathTag( CustomAnimationPane& rPane, ::sd::View& rView, const CustomAnimationEffectPtr& pEffect )
: SmartTag( rView )
, mrPane( rPane )