diff options
author | Malte Timmermann <mt@openoffice.org> | 2001-12-07 12:26:55 +0000 |
---|---|---|
committer | Malte Timmermann <mt@openoffice.org> | 2001-12-07 12:26:55 +0000 |
commit | a605b3a1df1c6357875779a338f5eff2319c2282 (patch) | |
tree | c0c48315b3c371332106c4ccd89cccfd8884a5a6 /svx/source/editeng/editdoc.cxx | |
parent | 456a4b65b755d0e94de8096550ec55aae4d828a7 (diff) |
#95495# Removed unnecessary call in RemoveChars
Diffstat (limited to 'svx/source/editeng/editdoc.cxx')
-rw-r--r-- | svx/source/editeng/editdoc.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/svx/source/editeng/editdoc.cxx b/svx/source/editeng/editdoc.cxx index 33b89ed80e87..2767893e2606 100644 --- a/svx/source/editeng/editdoc.cxx +++ b/svx/source/editeng/editdoc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: editdoc.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * - * last change: $Author: mt $ $Date: 2001-11-28 11:14:04 $ + * last change: $Author: mt $ $Date: 2001-12-07 13:26:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1581,7 +1581,6 @@ EditPaM EditDoc::ConnectParagraphs( ContentNode* pLeft, ContentNode* pRight ) EditPaM EditDoc::RemoveChars( EditPaM aPaM, USHORT nChars ) { // Evtl. Features entfernen! - aPaM.GetNode()->Copy( aPaM.GetIndex(), nChars ); aPaM.GetNode()->Erase( aPaM.GetIndex(), nChars ); aPaM.GetNode()->CollapsAttribs( aPaM.GetIndex(), nChars, GetItemPool() ); |