summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/drawvie3.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-02-12 13:35:58 +0000
committerKurt Zenker <kz@openoffice.org>2007-02-12 13:35:58 +0000
commit846ecc1ee676ef7c700fa62c9e757f4be924c25d (patch)
tree1d4e02a2e3c380be0dce98fb021d7698a6f487a9 /sc/source/ui/view/drawvie3.cxx
parent6305a316dfcbfe880e25274e53307861ad419d9b (diff)
INTEGRATION: CWS aw043_SRC680 (1.11.12.1.6); FILE MERGED
2007/01/31 13:53:28 aw 1.11.12.1.6.1: #i73602# use Calc's own flag from configuration to decide if to use OverlayBuffer or not
Diffstat (limited to 'sc/source/ui/view/drawvie3.cxx')
-rw-r--r--sc/source/ui/view/drawvie3.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sc/source/ui/view/drawvie3.cxx b/sc/source/ui/view/drawvie3.cxx
index 7e80762243ce..3c78e8f6ab18 100644
--- a/sc/source/ui/view/drawvie3.cxx
+++ b/sc/source/ui/view/drawvie3.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: drawvie3.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: obo $ $Date: 2007-01-22 15:07:15 $
+ * last change: $Author: kz $ $Date: 2007-02-12 14:35:58 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -71,7 +71,8 @@ ScDrawView::ScDrawView( OutputDevice* pOut, ScViewData* pData ) :
//HMHbDisableHdl( FALSE ),
bInConstruct( TRUE )
{
- SetBufferedOverlayAllowed(true);
+ // #i73602# Use default from the configuration
+ SetBufferedOverlayAllowed(getOptionsDrawinglayer().IsOverlayBuffer_Calc());
Construct();
}
@@ -86,7 +87,8 @@ ScDrawView::ScDrawView( OutputDevice* pOut, ScDocument* pDocument, SCTAB nTable
//HMHbDisableHdl( FALSE ),
bInConstruct( TRUE )
{
- SetBufferedOverlayAllowed(true);
+ // #i73602# Use default from the configuration
+ SetBufferedOverlayAllowed(getOptionsDrawinglayer().IsOverlayBuffer_Calc());
Construct();
}