[Mmclibrary-cvs] mmclibrary/MMCLib2/Core ComStream.cs,1.3,1.4
Brought to you by:
imjimmurphy,
kachalkov
From: Lesley v. Z. <ex...@us...> - 2005-01-19 22:21:29
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24713 Modified Files: ComStream.cs Log Message: Changed a lot of protected variables that where storage for properties to private Index: ComStream.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Core/ComStream.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ComStream.cs 22 Jul 2004 14:07:04 -0000 1.3 --- ComStream.cs 19 Jan 2005 22:21:15 -0000 1.4 *************** *** 15,23 **** protected int m_writeCount = 0; ! protected UCOMIStream m_comStream; public UCOMIStream comStream { ! get { return m_comStream; } ! set { m_comStream = value; } } --- 15,23 ---- protected int m_writeCount = 0; ! private UCOMIStream _comStream; public UCOMIStream comStream { ! get { return _comStream; } ! set { _comStream = value; } } *************** *** 38,42 **** /// <summary> ! /// Always return true /// </summary> public override bool CanRead --- 38,42 ---- /// <summary> ! /// Always returns true /// </summary> public override bool CanRead |