summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuexpand.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
commit03f7b689c03137352d8caca59d7b7644516b4b9d (patch)
tree0213fcbeebe0452cd7b3309c45bbed67cecab0f3 /sd/source/ui/func/fuexpand.cxx
parentfde9956bbd814be70ffda922424973c849639bf1 (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/func/fuexpand.cxx')
-rw-r--r--sd/source/ui/func/fuexpand.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/ui/func/fuexpand.cxx b/sd/source/ui/func/fuexpand.cxx
index e1be05b5ebdb..c02a069256ef 100644
--- a/sd/source/ui/func/fuexpand.cxx
+++ b/sd/source/ui/func/fuexpand.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuexpand.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:48:35 $
+ * last change: $Author: aw $ $Date: 2000-10-30 11:46:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -234,7 +234,9 @@ FuExpandPage::FuExpandPage(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
SfxItemSet aAttr(pDoc->GetPool());
aAttr.Put(XLineStyleItem(XLINE_NONE));
aAttr.Put(XFillStyleItem(XFILL_NONE));
- pTextObj->NbcSetAttributes(aAttr, TRUE);
+
+//-/ pTextObj->NbcSetAttributes(aAttr, TRUE);
+ pTextObj->SetItemSet(aAttr);
}
}