summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/drviewsb.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2000-10-30 10:50:43 +0000
committerArmin Weiss <aw@openoffice.org>2000-10-30 10:50:43 +0000
commitf6fdb4c2e5451d5ee93a34d43bb211136f68a6ef (patch)
tree291f36479a22df74225b6aa89a0dd8518a18070d /sd/source/ui/view/drviewsb.cxx
parent367a8ff11a3ecb477313f6ff4e370ac61b67da7b (diff)
change SdrObjects to use SfxItemSet instead of SfxSetItems.
Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...)
Diffstat (limited to 'sd/source/ui/view/drviewsb.cxx')
-rw-r--r--sd/source/ui/view/drviewsb.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/ui/view/drviewsb.cxx b/sd/source/ui/view/drviewsb.cxx
index 8c3d4bfcd..1d861fef8 100644
--- a/sd/source/ui/view/drviewsb.cxx
+++ b/sd/source/ui/view/drviewsb.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: drviewsb.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: ka $ $Date: 2000-09-21 16:12:20 $
+ * last change: $Author: aw $ $Date: 2000-10-30 11:50:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -575,7 +575,9 @@ void SdDrawViewShell::FuTemp02(SfxRequest& rReq)
SfxItemSet aAttr( pDoc->GetPool() );
SdrTextAutoGrowWidthItem aAutoGrowWidthOn(TRUE);
aAttr.Put( SdrTextAutoGrowWidthItem(TRUE) );
- pRectObj->NbcSetAttributes(aAttr, FALSE);
+
+//-/ pRectObj->NbcSetAttributes(aAttr, FALSE);
+ pRectObj->SetItemSet(aAttr);
pOutl->UpdateFields();
pOutl->SetUpdateMode( TRUE );