summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdocapt.cxx
diff options
context:
space:
mode:
authorDieter Loeschky <dl@openoffice.org>2001-03-28 07:08:15 +0000
committerDieter Loeschky <dl@openoffice.org>2001-03-28 07:08:15 +0000
commit6e1da8951011dff2e93a19f6c57e6479eda2e810 (patch)
tree311b2662777a35a5ec6448a16d502b0ecfbc0d50 /svx/source/svdraw/svdocapt.cxx
parent6bd07031abd130f0ab5533a4ee9de31e187cba2b (diff)
* virtual void ItemSetChanged(const SfxItemSet& rSet)
Diffstat (limited to 'svx/source/svdraw/svdocapt.cxx')
-rw-r--r--svx/source/svdraw/svdocapt.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdocapt.cxx b/svx/source/svdraw/svdocapt.cxx
index 527a59584d5b..af969472775f 100644
--- a/svx/source/svdraw/svdocapt.cxx
+++ b/svx/source/svdraw/svdocapt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: svdocapt.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: aw $ $Date: 2001-02-15 16:11:33 $
+ * last change: $Author: dl $ $Date: 2001-03-28 08:05:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -840,13 +840,13 @@ SfxItemSet* SdrCaptionObj::CreateNewItemSet(SfxItemPool& rPool)
////////////////////////////////////////////////////////////////////////////////////////////////////
// private support routines for ItemSet access
-void SdrCaptionObj::ItemSetChanged()
+void SdrCaptionObj::ItemSetChanged(const SfxItemSet& rSet)
{
// local changes
ImpRecalcTail();
// call parent
- SdrRectObj::ItemSetChanged();
+ SdrRectObj::ItemSetChanged(rSet);
}
////////////////////////////////////////////////////////////////////////////////////////////////////