From 03f7b689c03137352d8caca59d7b7644516b4b9d Mon Sep 17 00:00:00 2001 From: Armin Weiss Date: Mon, 30 Oct 2000 10:50:43 +0000 Subject: change SdrObjects to use SfxItemSet instead of SfxSetItems. Removed TakeAttributes() and SetAttributes(), new ItemSet modification methods (GetItem[Set], SetItem[Set], ClearItem,...) --- sd/source/ui/func/fuconarc.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sd/source/ui/func/fuconarc.cxx') diff --git a/sd/source/ui/func/fuconarc.cxx b/sd/source/ui/func/fuconarc.cxx index 114743d654e9..507cb52d850c 100644 --- a/sd/source/ui/func/fuconarc.cxx +++ b/sd/source/ui/func/fuconarc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: fuconarc.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tbe $ $Date: 2000-10-23 10:27:12 $ + * 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 FuConstArc::MouseButtonDown( const MouseEvent& rMEvt ) { SfxItemSet aAttr(pDoc->GetPool()); SetStyleSheet(aAttr, pObj); - pObj->NbcSetAttributes(aAttr, FALSE); + +//-/ pObj->NbcSetAttributes(aAttr, FALSE); + pObj->SetItemSet(aAttr); } bReturn = TRUE; -- cgit