summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuconstr.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2001-08-09 09:53:47 +0000
committerArmin Weiss <aw@openoffice.org>2001-08-09 09:53:47 +0000
commit511cf33c4dfd8dfffa450207e21913ec17240a8c (patch)
treef1091520e60dfdb1914b3d0f0f3df57f48d270a4 /sd/source/ui/func/fuconstr.cxx
parentd1bcd64886d49c5b92fb79cb8e10434284ce8b47 (diff)
#90235# removed unnecessary call to BckAction() which did delete two points on right mouse button during polygon contruction
Diffstat (limited to 'sd/source/ui/func/fuconstr.cxx')
-rw-r--r--sd/source/ui/func/fuconstr.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sd/source/ui/func/fuconstr.cxx b/sd/source/ui/func/fuconstr.cxx
index 6175b660a849..666dbb74523c 100644
--- a/sd/source/ui/func/fuconstr.cxx
+++ b/sd/source/ui/func/fuconstr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuconstr.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: dl $ $Date: 2000-12-13 11:19:39 $
+ * last change: $Author: aw $ $Date: 2001-08-09 10:53:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -136,8 +136,10 @@ BOOL FuConstruct::MouseButtonDown(const MouseEvent& rMEvt)
if ( pView->IsAction() )
{
- if ( rMEvt.IsRight() )
- pView->BckAction();
+ // #90235# this extra triggering is an error and leads to
+ // erasing the last two points when creating a polygon.
+ // if ( rMEvt.IsRight() )
+ // pView->BckAction();
return TRUE;
}