summaryrefslogtreecommitdiff
path: root/sd/source/ui/annotations/annotationtag.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/annotations/annotationtag.cxx')
-rw-r--r--sd/source/ui/annotations/annotationtag.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/sd/source/ui/annotations/annotationtag.cxx b/sd/source/ui/annotations/annotationtag.cxx
index 36aefb829c6a..09480da57de6 100644
--- a/sd/source/ui/annotations/annotationtag.cxx
+++ b/sd/source/ui/annotations/annotationtag.cxx
@@ -158,7 +158,6 @@ public:
virtual ~AnnotationHdl();
virtual void CreateB2dIAObject() SAL_OVERRIDE;
virtual bool IsFocusHdl() const SAL_OVERRIDE;
- virtual Pointer GetSdrDragPointer() const;
virtual bool isMarkable() const SAL_OVERRIDE;
private:
@@ -249,24 +248,6 @@ bool AnnotationHdl::isMarkable() const
return false;
}
-Pointer AnnotationHdl::GetSdrDragPointer() const
-{
- PointerStyle eStyle = POINTER_NOTALLOWED;
- if( mxTag.is() )
- {
- if( mxTag->isSelected() )
- {
- eStyle = POINTER_MOVE;
- }
- else
- {
- eStyle = POINTER_ARROW;
-
- }
- }
- return Pointer( eStyle );
-}
-
AnnotationTag::AnnotationTag( AnnotationManagerImpl& rManager, ::sd::View& rView, const Reference< XAnnotation >& xAnnotation, Color& rColor, int nIndex, const vcl::Font& rFont )
: SmartTag( rView )
, mrManager( rManager )