diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2003-11-24 16:09:58 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2003-11-24 16:09:58 +0000 |
commit | f1d2eab9586dd0adb1341390a6aa35224accbdc5 (patch) | |
tree | b2bb27fdfc7a7c81e3462916a0345def34ac388b /sd/source/ui/dlg/docprev.cxx | |
parent | df2bfa17fd26ad2ff00b771b03b7fc5f71511152 (diff) |
INTEGRATION: CWS aw003 (1.7.28); FILE MERGED
2003/10/07 11:28:07 aw 1.7.28.2: #111097#
2003/07/25 16:18:32 aw 1.7.28.1: #110094#
Changed Paint calls on objects to DoPaintObject to identify such cases
Diffstat (limited to 'sd/source/ui/dlg/docprev.cxx')
-rw-r--r-- | sd/source/ui/dlg/docprev.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/dlg/docprev.cxx b/sd/source/ui/dlg/docprev.cxx index 421084668..ad858c541 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.7 $ + * $Revision: 1.8 $ * - * last change: $Author: vg $ $Date: 2003-05-26 09:08:20 $ + * last change: $Author: rt $ $Date: 2003-11-24 17:09:58 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -122,7 +122,7 @@ IMPL_LINK( SdDocPreviewWin, PaintProc, SdrPaintProcRec *, pRecord ) SdrObject* pObj = pRecord->pObj; if( !pObj->IsEmptyPresObj() ) { - pObj->Paint( pRecord->rOut, pRecord->rInfoRec ); + pObj->SingleObjectPainter( pRecord->rOut, pRecord->rInfoRec ); // #110094#-17 } else { @@ -130,7 +130,7 @@ IMPL_LINK( SdDocPreviewWin, PaintProc, SdrPaintProcRec *, pRecord ) // so we need to check if this is one if( pObj->GetPage()->IsMasterPage() && (pObj->GetPage() == pObj->GetObjList()) && (pObj->GetOrdNum() == 0) && pObj->ISA( SdrRectObj ) ) { - pObj->Paint( pRecord->rOut, pRecord->rInfoRec ); + pObj->SingleObjectPainter( pRecord->rOut, pRecord->rInfoRec ); // #110094#-17 } } |