Fix some qdoc warnings
qtbase/src/corelib/io/qfsfileengine.cpp:926: warning: Overrides a previous doc qtbase/src/corelib/io/qfsfileengine.cpp:527: warning: (The previous doc is here) qtbase/src/corelib/tools/qbytearray.cpp:689: warning: Cannot tie this documentation to anything Change-Id: Ie7009f565a11a01859ccd0488ddeebe1b953305d Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
parent
0257ffe465
commit
6b38758084
@ -923,10 +923,6 @@ bool QFSFileEngine::supportsExtension(Extension extension) const
|
||||
\reimp
|
||||
*/
|
||||
|
||||
/*! \fn QDateTime QFSFileEngine::fileTime(FileTime time) const
|
||||
\reimp
|
||||
*/
|
||||
|
||||
/*! \fn QString QFSFileEngine::homePath()
|
||||
Returns the home path of the current user.
|
||||
|
||||
|
@ -686,14 +686,6 @@ QByteArray qCompress(const uchar* data, int nbytes, int compressionLevel)
|
||||
\sa qCompress()
|
||||
*/
|
||||
|
||||
/*! \relates QByteArray
|
||||
|
||||
\overload
|
||||
|
||||
Uncompresses the first \a nbytes of \a data and returns a new byte
|
||||
array with the uncompressed data.
|
||||
*/
|
||||
|
||||
#ifndef QT_NO_COMPRESS
|
||||
namespace {
|
||||
struct QByteArrayDataDeleter
|
||||
@ -709,6 +701,13 @@ static QByteArray invalidCompressedData()
|
||||
return QByteArray();
|
||||
}
|
||||
|
||||
/*! \relates QByteArray
|
||||
|
||||
\overload
|
||||
|
||||
Uncompresses the first \a nbytes of \a data and returns a new byte
|
||||
array with the uncompressed data.
|
||||
*/
|
||||
QByteArray qUncompress(const uchar* data, int nbytes)
|
||||
{
|
||||
if (!data) {
|
||||
|
Loading…
Reference in New Issue
Block a user