summaryrefslogtreecommitdiff
path: root/sd/source/ui/func/fuconbez.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/fuconbez.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/fuconbez.cxx')
-rw-r--r--sd/source/ui/func/fuconbez.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sd/source/ui/func/fuconbez.cxx b/sd/source/ui/func/fuconbez.cxx
index d4fb936b8439..e93a7ab88f20 100644
--- a/sd/source/ui/func/fuconbez.cxx
+++ b/sd/source/ui/func/fuconbez.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuconbez.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: tbe $ $Date: 2000-10-23 10:28:08 $
+ * 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
@@ -178,7 +178,9 @@ BOOL FuConstBezPoly::MouseButtonDown(const MouseEvent& rMEvt)
{
SfxItemSet aAttr(pDoc->GetPool());
SetStyleSheet(aAttr, pObj);
- pObj->NbcSetAttributes(aAttr, FALSE);
+
+//-/ pObj->NbcSetAttributes(aAttr, FALSE);
+ pObj->SetItemSet(aAttr);
}
}