summaryrefslogtreecommitdiff
path: root/cosv/source
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-02-20 08:30:06 +0000
committerOliver Bolte <obo@openoffice.org>2004-02-20 08:30:06 +0000
commit19c624224e551ca2991fbf0f23642b46bdd87df8 (patch)
treeaff0e370c4bd90aa26e8a120ec689267e5be11ae /cosv/source
parent1a4ae78f3a9ad4b14fedaa3d13bd27c3c857a114 (diff)
INTEGRATION: CWS sdki18n (1.7.48); FILE MERGED
2004/02/11 09:21:35 jsc 1.7.48.1: #115338# merge diffs from sdk11zhja to src680
Diffstat (limited to 'cosv/source')
-rw-r--r--cosv/source/strings/streamstr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cosv/source/strings/streamstr.cxx b/cosv/source/strings/streamstr.cxx
index 1eb29bc19845..f1c0341c3142 100644
--- a/cosv/source/strings/streamstr.cxx
+++ b/cosv/source/strings/streamstr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: streamstr.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: hr $ $Date: 2003-03-18 13:48:52 $
+ * last change: $Author: obo $ $Date: 2004-02-20 09:30:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -521,7 +521,7 @@ StreamStr::operator_read_line( bstream & i_src )
char c = 0;
intt nCount = 0;
for ( nCount = i_src.read(&c, 1);
- nCount == 1 AND c >= 32;
+ nCount == 1 AND c != 13 AND c != 10;
nCount = i_src.read(&c, 1) )
{
operator<<(c);
@@ -534,7 +534,7 @@ StreamStr::operator_read_line( bstream & i_src )
char oldc = c;
if (i_src.read(&c, 1) == 1)
{
- if (c >= 32 OR c == oldc)
+ if (c != 13 AND c != 10 OR c == oldc)
i_src.seek(-1,::csv::cur);
}
}