Kaydet (Commit) 34cdab05 authored tarafından Kurt Zenker's avatar Kurt Zenker

INTEGRATION: CWS ab12fixes (1.21.92); FILE MERGED

2004/12/17 15:39:11 ab 1.21.92.2: RESYNC: (1.21-1.22); FILE MERGED
2004/11/23 13:40:21 ab 1.21.92.1: #118234# Additional parameter for SbiStream::Read()
üst 464f7d3d
......@@ -2,9 +2,9 @@
*
* $RCSfile: iosys.cxx,v $
*
* $Revision: 1.22 $
* $Revision: 1.23 $
*
* last change: $Author: rt $ $Date: 2004-11-15 16:36:40 $
* last change: $Author: kz $ $Date: 2005-01-13 18:48:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
......@@ -793,10 +793,10 @@ SbError SbiStream::Close()
return nError;
}
SbError SbiStream::Read( ByteString& rBuf, USHORT n )
SbError SbiStream::Read( ByteString& rBuf, USHORT n, bool bForceReadingPerByte )
{
nExpandOnWriteTo = 0;
if( IsText() )
if( !bForceReadingPerByte && IsText() )
{
pStrm->ReadLine( rBuf );
nLine++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment