summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdglue.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-11-24 15:54:46 +0000
committerRüdiger Timm <rt@openoffice.org>2003-11-24 15:54:46 +0000
commit205883cc023f37f742074d8d6726e2c583ba26f5 (patch)
treecc9df27154f565fa72d2b893061e629a7365afc1 /svx/source/svdraw/svdglue.cxx
parent49b6fa8e854eef9207c981c596e211b80f58dfe2 (diff)
INTEGRATION: CWS aw003 (1.1.1.1.236); FILE MERGED
2003/08/19 16:45:33 aw 1.1.1.1.236.1: #111096#
Diffstat (limited to 'svx/source/svdraw/svdglue.cxx')
-rw-r--r--svx/source/svdraw/svdglue.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdglue.cxx b/svx/source/svdraw/svdglue.cxx
index 5a2a063d6764..409a29873ccc 100644
--- a/svx/source/svdraw/svdglue.cxx
+++ b/svx/source/svdraw/svdglue.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdglue.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:01:24 $
+ * last change: $Author: rt $ $Date: 2003-11-24 16:54:46 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -331,7 +331,11 @@ void SdrGluePoint::Invalidate(Window& rWin, const SdrObject* pObj) const
aPt=rWin.LogicToPixel(aPt);
rWin.EnableMapMode(FALSE);
long x=aPt.X(),y=aPt.Y(); // Groesse erstmal fest auf 7 Pixel
- rWin.Invalidate(Rectangle(Point(x-3,y-3),Point(x+3,y+3)));
+
+ // #111096#
+ // do not erase background, that causes flicker (!)
+ rWin.Invalidate(Rectangle(Point(x-3,y-3),Point(x+3,y+3)), INVALIDATE_NOERASE);
+
rWin.EnableMapMode(bMapMerk);
}