OS/2 didn't like inheriting a nsStorageTransport::ns{In,Out}putStream from

nsStorageTransport::nsBlockingStream since both are declared with private
access in nsStorageTransport.  This should fix the problem.
This commit is contained in:
darin%netscape.com 2001-03-03 03:07:10 +00:00
parent 64c04f1e02
commit 9460ba088d

View File

@ -51,7 +51,7 @@ public:
nsresult Init(PRUint32 aSegmentSize = DEFAULT_SEGMENT_SIZE,
PRUint32 aBufferSize = DEFAULT_BUFFER_SIZE);
private:
public: /* internal */
/**
* The transport request object returned by AsyncRead
@ -143,11 +143,6 @@ private:
virtual ~nsOutputStream();
};
friend class nsReadRequest;
friend class nsBlockingStream;
friend class nsInputStream;
friend class nsOutputStream;
/**
* Methods called from the friend classes
*/