diff options
author | Thorsten Behrens <thb@openoffice.org> | 2002-04-30 15:51:37 +0000 |
---|---|---|
committer | Thorsten Behrens <thb@openoffice.org> | 2002-04-30 15:51:37 +0000 |
commit | 535427fabbbe644a74e6020fcbd97fc4cfca0aba (patch) | |
tree | a6c0aab85c663eea9e2bed000b7dc563d20022e0 /svx/source/svdraw | |
parent | 79f370b6c621ea9af89fd8dd8901b0f349930bb7 (diff) |
#65293# Merged from branch 1.16.14.1
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r-- | svx/source/svdraw/svdogrp.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdogrp.cxx b/svx/source/svdraw/svdogrp.cxx index ca4981c2d4ea..ba6dfe077f58 100644 --- a/svx/source/svdraw/svdogrp.cxx +++ b/svx/source/svdraw/svdogrp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdogrp.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: hr $ $Date: 2002-04-30 15:34:05 $ + * last change: $Author: thb $ $Date: 2002-04-30 16:51:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1627,12 +1627,12 @@ void SdrObjGroup::AfterRead() } // ItemPool fuer dieses Objekt wechseln -void SdrObjGroup::MigrateItemPool(SfxItemPool* pSrcPool, SfxItemPool* pDestPool, SdrModel*) +void SdrObjGroup::MigrateItemPool(SfxItemPool* pSrcPool, SfxItemPool* pDestPool, SdrModel* pNewModel ) { if(pSrcPool && pDestPool && (pSrcPool != pDestPool)) { // call parent - SdrObject::MigrateItemPool(pSrcPool, pDestPool); + SdrObject::MigrateItemPool(pSrcPool, pDestPool, pNewModel ); // own reaction SdrObjList* pOL = pSub; @@ -1640,7 +1640,7 @@ void SdrObjGroup::MigrateItemPool(SfxItemPool* pSrcPool, SfxItemPool* pDestPool, for(sal_uInt32 a(0); a < nObjAnz; a++) { - pOL->GetObj(a)->MigrateItemPool(pSrcPool, pDestPool); + pOL->GetObj(a)->MigrateItemPool(pSrcPool, pDestPool, pNewModel ); } } } |