diff options
author | David Boddie <david.boddie@nokia.com> | 2011-01-17 14:32:06 (GMT) |
---|---|---|
committer | David Boddie <david.boddie@nokia.com> | 2011-01-17 14:32:06 (GMT) |
commit | 14f908687edd09664bc7909ef7a0bdd071456402 (patch) | |
tree | 8168d65dff0ee47df958bc3febeb97c02d40bc8e /src/corelib/tools | |
parent | ec0d663282e191bfb9837e76e709ed2ffe6e8aac (diff) | |
download | Qt-14f908687edd09664bc7909ef7a0bdd071456402.zip Qt-14f908687edd09664bc7909ef7a0bdd071456402.tar.gz Qt-14f908687edd09664bc7909ef7a0bdd071456402.tar.bz2 |
Doc: Clarified the use of qUncompress().
Task-number: QTBUG-16671
Diffstat (limited to 'src/corelib/tools')
-rw-r--r-- | src/corelib/tools/qbytearray.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp index b1bac9d..568293d 100644 --- a/src/corelib/tools/qbytearray.cpp +++ b/src/corelib/tools/qbytearray.cpp @@ -492,7 +492,7 @@ QByteArray qCompress(const uchar* data, int nbytes, int compressionLevel) #endif /*! - \fn QByteArray qUncompress(const QByteArray& data) + \fn QByteArray qUncompress(const QByteArray &data) \relates QByteArray @@ -506,10 +506,10 @@ QByteArray qCompress(const uchar* data, int nbytes, int compressionLevel) feature was added. \bold{Note:} If you want to use this function to uncompress external - data compressed using zlib, you first need to prepend four bytes to the - byte array that contain the expected length (as an unsigned integer) - of the uncompressed data encoded in big-endian order (most significant - byte first). + data that was compressed using zlib, you first need to prepend a four + byte header to the byte array containing the data. The header must + contain the expected length (in bytes) of the uncompressed data, + expressed as an unsigned, big-endian, 32-bit integer. \sa qCompress() */ |