diff options
Diffstat (limited to 'svx/source/engine3d')
-rw-r--r-- | svx/source/engine3d/obj3d.cxx | 8 | ||||
-rw-r--r-- | svx/source/engine3d/scene3d.cxx | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/svx/source/engine3d/obj3d.cxx b/svx/source/engine3d/obj3d.cxx index 17e94f6604f6..062c5f7cb4c5 100644 --- a/svx/source/engine3d/obj3d.cxx +++ b/svx/source/engine3d/obj3d.cxx @@ -2,9 +2,9 @@ * * $RCSfile: obj3d.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: aw $ $Date: 2001-02-15 16:10:18 $ + * last change: $Author: dl $ $Date: 2001-03-28 08:07:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1655,10 +1655,10 @@ void E3dObject::ItemChange(const sal_uInt16 nWhich, const SfxPoolItem* pNewItem) SdrAttrObj::ItemChange(nWhich, pNewItem); } -void E3dObject::ItemSetChanged() +void E3dObject::ItemSetChanged( const SfxItemSet& rSet ) { // call parent - SdrAttrObj::ItemSetChanged(); + SdrAttrObj::ItemSetChanged( rSet ); // local changes StructureChanged(this); 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 ); } //////////////////////////////////////////////////////////////////////////////////////////////////// |