Minor wording fixes in wxDataStream classes documentation.
Mostly just s/amount/number/ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -74,7 +74,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void Write8(wxUint8 i8);
|
void Write8(wxUint8 i8);
|
||||||
/**
|
/**
|
||||||
Writes an array of bytes to the stream. The amount of bytes to write is
|
Writes an array of bytes to the stream. The number of bytes to write is
|
||||||
specified with the @a size variable.
|
specified with the @a size variable.
|
||||||
*/
|
*/
|
||||||
void Write8(const wxUint8* buffer, size_t size);
|
void Write8(const wxUint8* buffer, size_t size);
|
||||||
@@ -84,7 +84,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void Write16(wxUint16 i16);
|
void Write16(wxUint16 i16);
|
||||||
/**
|
/**
|
||||||
Writes an array of 16 bit unsigned integer to the stream. The amount of
|
Writes an array of 16 bit unsigned integer to the stream. The number of
|
||||||
16 bit unsigned integer to write is specified with the @a size variable.
|
16 bit unsigned integer to write is specified with the @a size variable.
|
||||||
*/
|
*/
|
||||||
void Write16(const wxUint16* buffer, size_t size);
|
void Write16(const wxUint16* buffer, size_t size);
|
||||||
@@ -94,7 +94,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void Write32(wxUint32 i32);
|
void Write32(wxUint32 i32);
|
||||||
/**
|
/**
|
||||||
Writes an array of 32 bit unsigned integer to the stream. The amount of
|
Writes an array of 32 bit unsigned integer to the stream. The number of
|
||||||
32 bit unsigned integer to write is specified with the @a size variable.
|
32 bit unsigned integer to write is specified with the @a size variable.
|
||||||
*/
|
*/
|
||||||
void Write32(const wxUint32* buffer, size_t size);
|
void Write32(const wxUint32* buffer, size_t size);
|
||||||
@@ -104,7 +104,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
void Write64(wxUint64 i64);
|
void Write64(wxUint64 i64);
|
||||||
/**
|
/**
|
||||||
Writes an array of 64 bit unsigned integer to the stream. The amount of
|
Writes an array of 64 bit unsigned integer to the stream. The number of
|
||||||
64 bit unsigned integer to write is specified with the @a size variable.
|
64 bit unsigned integer to write is specified with the @a size variable.
|
||||||
*/
|
*/
|
||||||
void Write64(const wxUint64* buffer, size_t size);
|
void Write64(const wxUint64* buffer, size_t size);
|
||||||
@@ -114,8 +114,8 @@ public:
|
|||||||
*/
|
*/
|
||||||
void WriteDouble(double d);
|
void WriteDouble(double d);
|
||||||
/**
|
/**
|
||||||
Writes an array of double to the stream. The amount of double to write is
|
Writes an array of double to the stream. The number of doubles to write is
|
||||||
specified with the @a size variable.
|
specified by the @a size variable.
|
||||||
*/
|
*/
|
||||||
void WriteDouble(const double* buffer, size_t size);
|
void WriteDouble(const double* buffer, size_t size);
|
||||||
|
|
||||||
@@ -204,7 +204,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
void BigEndianOrdered(bool be_order);
|
void BigEndianOrdered(bool be_order);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the current text conversion class used for
|
Returns the current text conversion class used for
|
||||||
reading strings.
|
reading strings.
|
||||||
@@ -216,7 +215,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
wxUint8 Read8();
|
wxUint8 Read8();
|
||||||
/**
|
/**
|
||||||
Reads bytes from the stream in a specified buffer. The amount of bytes
|
Reads bytes from the stream in a specified buffer. The number of bytes
|
||||||
to read is specified by the @a size variable.
|
to read is specified by the @a size variable.
|
||||||
*/
|
*/
|
||||||
void Read8(wxUint8* buffer, size_t size);
|
void Read8(wxUint8* buffer, size_t size);
|
||||||
@@ -227,7 +226,7 @@ public:
|
|||||||
wxUint16 Read16();
|
wxUint16 Read16();
|
||||||
/**
|
/**
|
||||||
Reads 16 bit unsigned integers from the stream in a specified buffer.
|
Reads 16 bit unsigned integers from the stream in a specified buffer.
|
||||||
The amount of 16 bit unsigned integers to read is specified by the
|
The number of 16 bit unsigned integers to read is specified by the
|
||||||
@a size variable.
|
@a size variable.
|
||||||
*/
|
*/
|
||||||
void Read16(wxUint16* buffer, size_t size);
|
void Read16(wxUint16* buffer, size_t size);
|
||||||
@@ -238,7 +237,7 @@ public:
|
|||||||
wxUint32 Read32();
|
wxUint32 Read32();
|
||||||
/**
|
/**
|
||||||
Reads 32 bit unsigned integers from the stream in a specified buffer.
|
Reads 32 bit unsigned integers from the stream in a specified buffer.
|
||||||
The amount of 32 bit unsigned integers to read is specified by the
|
The number of 32 bit unsigned integers to read is specified by the
|
||||||
@a size variable.
|
@a size variable.
|
||||||
*/
|
*/
|
||||||
void Read32(wxUint32* buffer, size_t size);
|
void Read32(wxUint32* buffer, size_t size);
|
||||||
@@ -249,7 +248,7 @@ public:
|
|||||||
wxUint64 Read64();
|
wxUint64 Read64();
|
||||||
/**
|
/**
|
||||||
Reads 64 bit unsigned integers from the stream in a specified buffer.
|
Reads 64 bit unsigned integers from the stream in a specified buffer.
|
||||||
The amount of 64 bit unsigned integers to read is specified by the
|
The number of 64 bit unsigned integers to read is specified by the
|
||||||
@a size variable.
|
@a size variable.
|
||||||
*/
|
*/
|
||||||
void Read64(wxUint64* buffer, size_t size);
|
void Read64(wxUint64* buffer, size_t size);
|
||||||
@@ -260,7 +259,8 @@ public:
|
|||||||
double ReadDouble();
|
double ReadDouble();
|
||||||
/**
|
/**
|
||||||
Reads double data (IEEE encoded) from the stream in a specified buffer.
|
Reads double data (IEEE encoded) from the stream in a specified buffer.
|
||||||
The amount of doubles to read is specified by the @a size variable.
|
|
||||||
|
The number of doubles to read is specified by the @a size variable.
|
||||||
*/
|
*/
|
||||||
void ReadDouble(double* buffer, size_t size);
|
void ReadDouble(double* buffer, size_t size);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user