diff options
author | jp <jp@openoffice.org> | 2001-11-13 12:47:41 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2001-11-13 12:47:41 +0000 |
commit | 167aabd0fa6e76c61654b00eca06c1e5b5e0a245 (patch) | |
tree | 18bc4eb2e0f5bb9b08ebd31322929360dd20c776 /sw/source/filter/ascii/parasc.cxx | |
parent | f4bca9253e03e15b623aeacaa8a2d57e5cbeec9f (diff) |
Bug #94636#: ReadChars - don't handle zero character special
Diffstat (limited to 'sw/source/filter/ascii/parasc.cxx')
-rw-r--r-- | sw/source/filter/ascii/parasc.cxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sw/source/filter/ascii/parasc.cxx b/sw/source/filter/ascii/parasc.cxx index d8c4d48dc3bf..e93f16d46bfd 100644 --- a/sw/source/filter/ascii/parasc.cxx +++ b/sw/source/filter/ascii/parasc.cxx @@ -2,9 +2,9 @@ * * $RCSfile: parasc.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: jp $ $Date: 2001-10-30 14:40:31 $ + * last change: $Author: jp $ $Date: 2001-11-13 13:47:41 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -805,10 +805,12 @@ ULONG SwASCIIParser::ReadChars() BOOL bIns = TRUE, bSplitNode = FALSE; switch( *pStt ) { - case 0: - pEnd = pStt; - bIns = FALSE; - break; +//JP 12.11.2001: task 94636 - don't ignore all behind the zero character, +// change it to the default "control character" +// case 0: +// pEnd = pStt; +// bIns = FALSE; +// break; case 0x0a: if( LINEEND_LF == rOpt.GetParaFlags() ) { |