summaryrefslogtreecommitdiff
path: root/sc/source/ui/drawfunc/futext.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
commit643189a942c0cb49870501574ee4b35c07cfc716 (patch)
tree7ee0656c810ead68270dc707c3a94917ca75d2a8 /sc/source/ui/drawfunc/futext.cxx
parent3fe53c2de360120a491f521740dce1c50d74a1b9 (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 'sc/source/ui/drawfunc/futext.cxx')
-rw-r--r--sc/source/ui/drawfunc/futext.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sc/source/ui/drawfunc/futext.cxx b/sc/source/ui/drawfunc/futext.cxx
index a545e61367d8..98088167bb52 100644
--- a/sc/source/ui/drawfunc/futext.cxx
+++ b/sc/source/ui/drawfunc/futext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: futext.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: nn $ $Date: 2000-09-22 18:49:37 $
+ * last change: $Author: aw $ $Date: 2000-10-30 11:36:53 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -652,7 +652,8 @@ BOOL __EXPORT FuText::MouseButtonUp(const MouseEvent& rMEvt)
aItemSet.Put( SdrTextAniCountItem( 1 ) );
aItemSet.Put( SdrTextAniAmountItem(
(INT16)pWindow->PixelToLogic(Size(2,1)).Width()) );
- pObj->SetAttributes(aItemSet, FALSE);
+//-/ pObj->SetAttributes(aItemSet, FALSE);
+ pObj->SetItemSetAndBroadcast(aItemSet);
}
}
SetInEditMode();