diff options
author | Dieter Loeschky <dl@openoffice.org> | 2001-04-02 09:27:19 +0000 |
---|---|---|
committer | Dieter Loeschky <dl@openoffice.org> | 2001-04-02 09:27:19 +0000 |
commit | 6d705d4d4d35f2e31a23e3b325b985b54e73472f (patch) | |
tree | d5e150ebcae86dca88c9a53af3e650b843347f55 | |
parent | 06b8ce5e22ef8b56cda588849c914d055ba8c643 (diff) |
#84939# SetItemSet(): range of aSet must include EditEngine itempool range
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index 1861e0f42cca..e4e328a65900 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: svdobj.cxx,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: dl $ $Date: 2001-03-28 08:03:58 $ + * last change: $Author: dl $ $Date: 2001-04-02 10:27:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -3308,7 +3308,7 @@ void SdrObject::SetItemSet( const SfxItemSet& rSet ) const SfxPoolItem *pPoolItem; std::vector< sal_uInt16 > aPostItemChangeList; BOOL bDidChange(FALSE); - SfxItemSet aSet( *GetItemPool(), SDRATTR_START, SDRATTR_END ); + SfxItemSet aSet( *GetItemPool() ); while(nWhich) { |