From 7e2f6bcad31a3a200e9dfb7f0539f035c408407b Mon Sep 17 00:00:00 2001 From: Ivo Hinkelmann Date: Mon, 26 Nov 2007 13:37:09 +0000 Subject: [PATCH] INTEGRATION: CWS aw053 (1.50.102); FILE MERGED 2007/09/14 10:58:24 aw 1.50.102.1: #i80528# Removal of draft paint modes --- sd/source/ui/view/drviews5.cxx | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/sd/source/ui/view/drviews5.cxx b/sd/source/ui/view/drviews5.cxx index c40b2856e601..c449a1ff8ab2 100644 --- a/sd/source/ui/view/drviews5.cxx +++ b/sd/source/ui/view/drviews5.cxx @@ -4,9 +4,9 @@ * * $RCSfile: drviews5.cxx,v $ * - * $Revision: 1.50 $ + * $Revision: 1.51 $ * - * last change: $Author: rt $ $Date: 2007-04-03 16:29:57 $ + * last change: $Author: ihi $ $Date: 2007-11-26 14:37:09 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -311,22 +311,6 @@ void DrawViewShell::ReadFrameViewData(FrameView* pView) if (mpDrawView->IsEliminatePolyPoints() != pView->IsEliminatePolyPoints() ) mpDrawView->SetEliminatePolyPoints( pView->IsEliminatePolyPoints() ); - if (mpDrawView->IsLineDraft() != pView->IsLineDraft() ) - mpDrawView->SetLineDraft( pView->IsLineDraft() ); - - if (mpDrawView->IsFillDraft() != pView->IsFillDraft() ) - { -// #110094#-7 -// mpDrawView->ReleaseMasterPagePaintCache(); - mpDrawView->SetFillDraft( pView->IsFillDraft() ); - } - - if (mpDrawView->IsTextDraft() != pView->IsTextDraft() ) - mpDrawView->SetTextDraft( pView->IsTextDraft() ); - - if (mpDrawView->IsGrafDraft() != pView->IsGrafDraft() ) - mpDrawView->SetGrafDraft( pView->IsGrafDraft() ); - if (mpDrawView->IsSolidMarkHdl() != pView->IsSolidMarkHdl() ) mpDrawView->SetSolidMarkHdl( pView->IsSolidMarkHdl() ); @@ -444,10 +428,6 @@ void DrawViewShell::WriteFrameViewData() mpFrameView->SetEliminatePolyPointLimitAngle( mpDrawView->GetEliminatePolyPointLimitAngle() ); mpFrameView->SetEliminatePolyPoints( mpDrawView->IsEliminatePolyPoints() ); - mpFrameView->SetLineDraft( mpDrawView->IsLineDraft() ); - mpFrameView->SetFillDraft( mpDrawView->IsFillDraft() ); - mpFrameView->SetTextDraft( mpDrawView->IsTextDraft() ); - mpFrameView->SetGrafDraft( mpDrawView->IsGrafDraft() ); mpFrameView->SetSolidMarkHdl( mpDrawView->IsSolidMarkHdl() ); mpFrameView->SetSolidDragging( mpDrawView->IsSolidDragging() ); mpFrameView->SetQuickEdit( mpDrawView->IsQuickTextEditMode() );