diff options
author | Kurt Zenker <kz@openoffice.org> | 2004-06-10 10:37:55 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2004-06-10 10:37:55 +0000 |
commit | 018a42b708455fbf41dabbc795560903685116b8 (patch) | |
tree | 79756bb64c7095e6fb394c9b54b97bec4b32fd73 /sd/source/ui/dlg/docprev.cxx | |
parent | 6330283f3dd0128b69ad2ffcf7942ed1dd710b22 (diff) |
INTEGRATION: CWS aw011 (1.10.58); FILE MERGED
2004/05/28 08:27:07 aw 1.10.58.1: #i29486#
Use DoPaintObject instead of SingleObjectPainter in PaintProc recalls. Done that for all simple places, not yet for the more complicated oned. Will be changed when the proc recall mechanism will be changed.
Diffstat (limited to 'sd/source/ui/dlg/docprev.cxx')
-rw-r--r-- | sd/source/ui/dlg/docprev.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sd/source/ui/dlg/docprev.cxx b/sd/source/ui/dlg/docprev.cxx index 009bc69d4bd2..bba7c0659325 100644 --- a/sd/source/ui/dlg/docprev.cxx +++ b/sd/source/ui/dlg/docprev.cxx @@ -2,9 +2,9 @@ * * $RCSfile: docprev.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: rt $ $Date: 2004-03-30 15:49:04 $ + * last change: $Author: kz $ $Date: 2004-06-10 11:37:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -128,7 +128,8 @@ IMPL_LINK( SdDocPreviewWin, PaintProc, SdrPaintProcRec *, pRecord ) SdrObject* pObj = pRecord->pObj; if( pObj->GetPage() && pObj->GetPage()->checkVisibility( pRecord, false ) ) { - pObj->SingleObjectPainter( pRecord->rOut, pRecord->rInfoRec ); // #110094#-17 + // #i29486# use DoPaintObject instead of SingleObjectPainter in PaintProc recalls + pObj->DoPaintObject( pRecord->rOut, pRecord->rInfoRec ); // #110094#-17 } return 0; |