summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svddrgv.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2002-10-02 11:45:54 +0000
committerArmin Weiss <aw@openoffice.org>2002-10-02 11:45:54 +0000
commit868090cd73c466d34d59d22f2de2f0ee14cca81a (patch)
treed9608785c44dbab0f8688b13a8558abc9cab26f6 /svx/source/svdraw/svddrgv.cxx
parent52fa60db9a41dc86ab721086838bdf60b74a903b (diff)
#103894# Expand test for HDL_ANCHOR_TR
Diffstat (limited to 'svx/source/svdraw/svddrgv.cxx')
-rw-r--r--svx/source/svdraw/svddrgv.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/svx/source/svdraw/svddrgv.cxx b/svx/source/svdraw/svddrgv.cxx
index 897d6e076aec..fbc61a71f22a 100644
--- a/svx/source/svdraw/svddrgv.cxx
+++ b/svx/source/svdraw/svddrgv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svddrgv.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: aw $ $Date: 2001-10-24 13:40:05 $
+ * last change: $Author: aw $ $Date: 2002-10-02 12:45:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -486,7 +486,9 @@ BOOL SdrDragView::BegDragObj(const Point& rPnt, OutputDevice* pOut, SdrHdl* pHdl
pDragHdl=pHdl;
eDragHdl= pHdl==NULL ? HDL_MOVE : pHdl->GetKind();
bDragHdl=eDragHdl==HDL_REF1 || eDragHdl==HDL_REF2 || eDragHdl==HDL_MIRX;
- BOOL bNotDraggable = (eDragHdl == HDL_ANCHOR);
+
+ // #103894# Expand test for HDL_ANCHOR_TR
+ BOOL bNotDraggable = (HDL_ANCHOR == eDragHdl || HDL_ANCHOR_TR == eDragHdl);
if(bDragHdl)
{