diff options
author | Armin Weiss <aw@openoffice.org> | 2001-02-09 16:54:43 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2001-02-09 16:54:43 +0000 |
commit | bc7b737f2ae54270c6d6fcb7c7a97c44679937cd (patch) | |
tree | 31ea34d5a23e1c7d03151392b04f9f203db558db /svx/source/svdraw/svdocapt.cxx | |
parent | b4b5e1fd9f5e8f0e19df6e481bd56ee80dc08416 (diff) |
Added support for ItemSetChanged() which is called at every object
after SetItem(), SetItemSet() or ClearItem() have finished. It is
propagated through groups and Scenes. Used to make non-WhichID-
specific changes AFTER all items are changed and only ONCE.
Diffstat (limited to 'svx/source/svdraw/svdocapt.cxx')
-rw-r--r-- | svx/source/svdraw/svdocapt.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdocapt.cxx b/svx/source/svdraw/svdocapt.cxx index 017f69dc248b..869742abe232 100644 --- a/svx/source/svdraw/svdocapt.cxx +++ b/svx/source/svdraw/svdocapt.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdocapt.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: aw $ $Date: 2001-01-26 14:08:54 $ + * last change: $Author: aw $ $Date: 2001-02-09 17:54:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -839,13 +839,13 @@ SfxItemSet* SdrCaptionObj::CreateNewItemSet(SfxItemPool& rPool) //////////////////////////////////////////////////////////////////////////////////////////////////// // private support routines for ItemSet access -void SdrCaptionObj::PostItemChange(const sal_uInt16 nWhich) +void SdrCaptionObj::ItemSetChanged() { // local changes ImpRecalcTail(); // call parent - SdrRectObj::PostItemChange(nWhich); + SdrRectObj::ItemSetChanged(); } //////////////////////////////////////////////////////////////////////////////////////////////////// |