summaryrefslogtreecommitdiff
path: root/svx/source/engine3d/scene3d.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/engine3d/scene3d.cxx')
-rw-r--r--svx/source/engine3d/scene3d.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/engine3d/scene3d.cxx b/svx/source/engine3d/scene3d.cxx
index 3ec594bcf0a9..24f9d23745ad 100644
--- a/svx/source/engine3d/scene3d.cxx
+++ b/svx/source/engine3d/scene3d.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: scene3d.cxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: aw $ $Date: 2001-02-09 17:53:13 $
+ * last change: $Author: dl $ $Date: 2001-03-28 08:08:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1741,15 +1741,15 @@ void E3dScene::PostItemChange(const sal_uInt16 nWhich)
////////////////////////////////////////////////////////////////////////////////////////////////////
// ItemSet was changed, maybe user wants to react
-void E3dScene::ItemSetChanged()
+void E3dScene::ItemSetChanged( const SfxItemSet& rSet )
{
// call parent
- E3dObject::ItemSetChanged();
+ E3dObject::ItemSetChanged( rSet );
// set at all contained objects
sal_uInt32 nCount(pSub->GetObjCount());
for(sal_uInt32 a(0); a < nCount; a++)
- pSub->GetObj(a)->ItemSetChanged();
+ pSub->GetObj(a)->ItemSetChanged( rSet );
}
////////////////////////////////////////////////////////////////////////////////////////////////////