summaryrefslogtreecommitdiffstats
path: root/svx/source/dialog/dlgctrl.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2000-10-30 09:48:03 +0000
committerArmin Weiss <aw@openoffice.org>2000-10-30 09:48:03 +0000
commit371060e167ad92eddc7820ec40fb6b0466033972 (patch)
treeb3149fd87e338d6fbf7aac166e1460c1daa98769 /svx/source/dialog/dlgctrl.cxx
parentAdded delivering of xmlhelp.jar (diff)
downloadcore-371060e167ad92eddc7820ec40fb6b0466033972.tar.gz
core-371060e167ad92eddc7820ec40fb6b0466033972.zip
change SdrObjects to use SfxItemSet instead of SfxSetItems.
Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...)
Diffstat (limited to 'svx/source/dialog/dlgctrl.cxx')
-rw-r--r--svx/source/dialog/dlgctrl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx
index 72cf9375751e..99ee33930e06 100644
--- a/svx/source/dialog/dlgctrl.cxx
+++ b/svx/source/dialog/dlgctrl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgctrl.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:01:08 $
+ * last change: $Author: aw $ $Date: 2000-10-30 10:48:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1855,10 +1855,10 @@ void SvxXShadowPreview::Paint( const Rectangle& rRect )
{
aShadow.SetPos( aShadowPos + Point( aRect.GetWidth(), aRect.GetHeight() ) );
if ( pShadowItem )
- pXOutDev->SetFillAttr( *pShadowItem );
+ pXOutDev->SetFillAttr( pShadowItem->GetItemSet() );
pXOutDev->DrawRect( aShadow );
if ( pRectItem )
- pXOutDev->SetFillAttr( *pRectItem );
+ pXOutDev->SetFillAttr( pRectItem->GetItemSet() );
pXOutDev->DrawRect( aRect );
}