summaryrefslogtreecommitdiff
path: root/sd/source/ui/dlg/docprev.cxx
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2003-11-24 16:09:58 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2003-11-24 16:09:58 +0000
commitf1d2eab9586dd0adb1341390a6aa35224accbdc5 (patch)
treeb2bb27fdfc7a7c81e3462916a0345def34ac388b /sd/source/ui/dlg/docprev.cxx
parentdf2bfa17fd26ad2ff00b771b03b7fc5f71511152 (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.cxx8
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
}
}