summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qbytearray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qbytearray.cpp')
-rw-r--r--src/corelib/tools/qbytearray.cpp129
1 files changed, 0 insertions, 129 deletions
diff --git a/src/corelib/tools/qbytearray.cpp b/src/corelib/tools/qbytearray.cpp
index 0c5276f442..9f21b72bfd 100644
--- a/src/corelib/tools/qbytearray.cpp
+++ b/src/corelib/tools/qbytearray.cpp
@@ -4270,135 +4270,6 @@ QByteArray QByteArray::toPercentEncoding(const QByteArray &exclude, const QByteA
*/
/*!
- \fn QByteArray::QByteArray(int size)
-
- Use QByteArray(int, char) instead.
-*/
-
-
-/*!
- \fn QByteArray QByteArray::leftJustify(uint width, char fill, bool truncate) const
-
- Use leftJustified() instead.
-*/
-
-/*!
- \fn QByteArray QByteArray::rightJustify(uint width, char fill, bool truncate) const
-
- Use rightJustified() instead.
-*/
-
-/*!
- \fn QByteArray& QByteArray::duplicate(const QByteArray& a)
-
- \oldcode
- QByteArray bdata;
- bdata.duplicate(original);
- \newcode
- QByteArray bdata;
- bdata = original;
- \endcode
-
- \note QByteArray uses implicit sharing so if you modify a copy, only the
- copy is changed.
-*/
-
-/*!
- \fn QByteArray& QByteArray::duplicate(const char *a, uint n)
-
- \overload
-
- \oldcode
- QByteArray bdata;
- bdata.duplicate(ptr, size);
- \newcode
- QByteArray bdata;
- bdata = QByteArray(ptr, size);
- \endcode
-
- \note QByteArray uses implicit sharing so if you modify a copy, only the
- copy is changed.
-*/
-
-/*!
- \fn void QByteArray::resetRawData(const char *data, uint n)
-
- Use clear() instead.
-*/
-
-/*!
- \fn QByteArray QByteArray::lower() const
-
- Use toLower() instead.
-*/
-
-/*!
- \fn QByteArray QByteArray::upper() const
-
- Use toUpper() instead.
-*/
-
-/*!
- \fn QByteArray QByteArray::stripWhiteSpace() const
-
- Use trimmed() instead.
-*/
-
-/*!
- \fn QByteArray QByteArray::simplifyWhiteSpace() const
-
- Use simplified() instead.
-*/
-
-/*!
- \fn int QByteArray::find(char c, int from = 0) const
-
- Use indexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::find(const char *c, int from = 0) const
-
- Use indexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::find(const QByteArray &ba, int from = 0) const
-
- Use indexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::findRev(char c, int from = -1) const
-
- Use lastIndexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::findRev(const char *c, int from = -1) const
-
- Use lastIndexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::findRev(const QByteArray &ba, int from = -1) const
-
- Use lastIndexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::find(const QString &s, int from = 0) const
-
- Use indexOf() instead.
-*/
-
-/*!
- \fn int QByteArray::findRev(const QString &s, int from = -1) const
-
- Use lastIndexOf() instead.
-*/
-
-/*!
\fn DataPtr &QByteArray::data_ptr()
\internal
*/