diff options
author | Dieter Loeschky <dl@openoffice.org> | 2001-04-02 09:24:40 +0000 |
---|---|---|
committer | Dieter Loeschky <dl@openoffice.org> | 2001-04-02 09:24:40 +0000 |
commit | 06b8ce5e22ef8b56cda588849c914d055ba8c643 (patch) | |
tree | 9db1671c3d7cece96a9529a86d89aff952ccd126 | |
parent | 5b416e2b73413cd1da1793ef6c854b3a6e8725b4 (diff) |
#84939# ItemSetChanged(): merging only items of rSet
-rw-r--r-- | svx/source/svdraw/svdotxat.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdotxat.cxx b/svx/source/svdraw/svdotxat.cxx index 1ad7c2815490..64da18d196c3 100644 --- a/svx/source/svdraw/svdotxat.cxx +++ b/svx/source/svdraw/svdotxat.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdotxat.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: kz $ $Date: 2001-03-30 08:52:57 $ + * last change: $Author: dl $ $Date: 2001-04-02 10:24:40 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -272,9 +272,9 @@ void SdrTextObj::ItemSetChanged(const SfxItemSet& rSet) sal_uInt16 nParaCount((sal_uInt16)pOutliner->GetParagraphCount()); for(sal_uInt16 nPara(0); nPara < nParaCount; nPara++) { - SfxItemSet aSet(pOutliner->GetParaAttribs(nPara)); - aSet.Put(*mpObjectItemSet); - pOutliner->SetParaAttribs(nPara, aSet); + SfxItemSet aSet( pOutliner->GetParaAttribs(nPara) ); + aSet.Put( rSet ); +
pOutliner->SetParaAttribs(nPara, aSet); } if(!pEdtOutl) |