summaryrefslogtreecommitdiff
path: root/sw/source/core/view/vdraw.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-12 15:28:50 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-12 15:28:50 +0000
commit55f3d22ed92d3d61e1357507908da4f22b1d30bc (patch)
tree7261c55dbf46ff3120ba23437838d004329fb456 /sw/source/core/view/vdraw.cxx
parent2c3bab0bb5a8d1d862e4b1fe3763f290c5940951 (diff)
INTEGRATION: CWS aw037 (1.19.6); FILE MERGED
2006/11/27 16:41:01 aw 1.19.6.1: #i65399# Some necessary cleanups/reworks of handles after aw024
Diffstat (limited to 'sw/source/core/view/vdraw.cxx')
-rw-r--r--sw/source/core/view/vdraw.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/core/view/vdraw.cxx b/sw/source/core/view/vdraw.cxx
index 7d9e151c43f5..f918c8a5efb1 100644
--- a/sw/source/core/view/vdraw.cxx
+++ b/sw/source/core/view/vdraw.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: vdraw.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: ihi $ $Date: 2006-11-14 15:12:32 $
+ * last change: $Author: kz $ $Date: 2006-12-12 16:28:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -176,15 +176,15 @@ void SwViewImp::LockPaint()
{
if ( HasDrawView() )
{
- bShowHdlPaint = GetDrawView()->IsMarkHdlShown();
- if ( bShowHdlPaint )
- GetDrawView()->HideMarkHdl();
- bResetHdlHiddenPaint = !GetDrawView()->IsMarkHdlHidden();
- GetDrawView()->SetMarkHdlHidden( TRUE );
+ //HMHbShowHdlPaint = GetDrawView()->IsMarkHdlShown();
+ //HMHif ( bShowHdlPaint )
+ //HMH GetDrawView()->HideMarkHdl();
+ bResetHdlHiddenPaint = !GetDrawView()->areMarkHandlesHidden();
+ GetDrawView()->hideMarkHandles();
}
else
{
- bShowHdlPaint = FALSE;
+ //HMHbShowHdlPaint = FALSE;
bResetHdlHiddenPaint = FALSE;
}
}
@@ -194,9 +194,9 @@ void SwViewImp::LockPaint()
void SwViewImp::UnlockPaint()
{
if ( bResetHdlHiddenPaint )
- GetDrawView()->SetMarkHdlHidden( FALSE );
- if ( bShowHdlPaint )
- GetDrawView()->ShowMarkHdl();
+ GetDrawView()->showMarkHandles();
+ //HMHif ( bShowHdlPaint )
+ //HMH GetDrawView()->ShowMarkHdl();
}