#i10000# View::InitRedraw changed into View::CompleteRedraw

This commit is contained in:
Rüdiger Timm
2004-07-14 15:36:01 +00:00
parent eed57fdce2
commit 07b63eacea
2 changed files with 9 additions and 12 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: SlideSorterView.hxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2004-07-13 14:22:29 $
* last change: $Author: rt $ $Date: 2004-07-14 16:36:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -194,11 +194,10 @@ public:
void HandleModelChange (void);
virtual void Resize (void);
virtual void InitRedraw (
virtual void CompleteRedraw (
OutputDevice* pDevice,
const Region& rPaintArea,
USHORT nPaintMode=0,
const Link* pPaintProc=NULL);
::sdr::contact::ViewObjectContactRedirector* pRedirector = 0L);
virtual void InvalidateOneWin (
::Window& rWindow);
virtual void InvalidateOneWin (
@@ -206,7 +205,6 @@ public:
const Rectangle& rPaintArea );
void Layout (void);
/** This tells the view that it has to re-determine the visibility of
the page objects before painting them the next time.
*/

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: SlideSorterView.cxx,v $
*
* $Revision: 1.2 $
* $Revision: 1.3 $
*
* last change: $Author: rt $ $Date: 2004-07-13 14:27:04 $
* last change: $Author: rt $ $Date: 2004-07-14 16:35:54 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -495,11 +495,10 @@ Rectangle SlideSorterView::GetPageBoundingBox (
void SlideSorterView::InitRedraw (
void SlideSorterView::CompleteRedraw (
OutputDevice* pDevice,
const Region& rPaintArea,
USHORT nPaintMode,
const Link* pPaintProc)
::sdr::contact::ViewObjectContactRedirector* pRedirector)
{
if (nLockRedrawSmph == 0)
{
@@ -513,7 +512,7 @@ void SlideSorterView::InitRedraw (
// this call and restored afterwards so that its XOR painting works
// properly.
GetOverlay().HideAndSave();
View::InitRedraw (pDevice, rPaintArea, nPaintMode, pPaintProc);
View::CompleteRedraw (pDevice, rPaintArea, pRedirector);
GetOverlay().Restore();
}