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
commit4336dbb058e6300f90790e108360d066fdde6adb (patch)
tree1483b41dbd6e0c79dedd1c89d376a480488622f5 /sd/source/ui/dlg/docprev.cxx
parenta077dac03dbd494ec07c8ef591a9b148c14b6cfb (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 06de6f5c4301..be15712319de 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
}
}