changed the names of the member variables to use the OpenTracker guidlines instead of using the MFC-ish m_ notation

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1164 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber
2002-09-25 00:55:45 +00:00
parent 83a57b389a
commit ba97a8bdec
@@ -48,15 +48,15 @@ private:
ssize_t ReadStream(); ssize_t ReadStream();
// Load the stream buffer from the stream // Load the stream buffer from the stream
BPositionIO *m_pStream; BPositionIO *fpStream;
// stream object this object is buffering // stream object this object is buffering
uint8 *m_pBuffer; uint8 *fpBuffer;
// buffered data from m_pStream // buffered data from fpStream
size_t m_nBufferSize; size_t fnBufferSize;
// number of bytes of memory allocated for m_pBuffer // number of bytes of memory allocated for fpBuffer
size_t m_nLen; size_t fnLen;
// number of bytes of actual data in m_pBuffer // number of bytes of actual data in fpBuffer
size_t m_nPos; size_t fnPos;
// current position in the buffer // current position in the buffer
}; };