diff options
author | Christian Lippka <cl@openoffice.org> | 2002-05-07 08:22:12 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2002-05-07 08:22:12 +0000 |
commit | 11c45b2af5b566a2cadb64ae7f0d68f519a44bd7 (patch) | |
tree | 1336014480fa1beccf26e61428d39ac3bb69594f /sd/source/ui/view/frmview.cxx | |
parent | 598238cd1bed9a5216147be4cb0af5aec7b00da6 (diff) |
#98819# removed use of ColorConfig for grid in application
Diffstat (limited to 'sd/source/ui/view/frmview.cxx')
-rw-r--r-- | sd/source/ui/view/frmview.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/view/frmview.cxx b/sd/source/ui/view/frmview.cxx index 88b4951d20d3..780dad69ee6b 100644 --- a/sd/source/ui/view/frmview.cxx +++ b/sd/source/ui/view/frmview.cxx @@ -2,9 +2,9 @@ * * $RCSfile: frmview.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: cl $ $Date: 2002-04-30 12:11:11 $ + * last change: $Author: cl $ $Date: 2002-05-07 09:22:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -162,7 +162,7 @@ FrameView::FrameView(SdDrawDocument* pDrawDoc) SetGridFine( pFrameView->GetGridFine() ); SetSnapGrid( pFrameView->GetSnapGrid() ); SetSnapGridWidth(pFrameView->GetSnapGridWidthX(), pFrameView->GetSnapGridWidthY()); -// SetGridVisible( pFrameView->IsGridVisible() ); + SetGridVisible( pFrameView->IsGridVisible() ); SetGridFront( pFrameView->IsGridFront() ); SetSnapAngle( pFrameView->GetSnapAngle() ); SetGridSnap( pFrameView->IsGridSnap() ); @@ -541,7 +541,7 @@ void FrameView::Update(SdOptions* pOptions) if (pOptions) { bRuler = pOptions->IsRulerVisible(); -// SetGridVisible( pOptions->IsGridVisible() ); + SetGridVisible( pOptions->IsGridVisible() ); SetSnapAngle( pOptions->GetAngle() ); SetGridSnap( pOptions->IsUseGridSnap() ); SetBordSnap( pOptions->IsSnapBorder() ); |