From 915e1b71af4b131ae3de471ead40bde3778fe642 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Thu, 13 Feb 2025 17:21:28 +0100 Subject: [PATCH] doc: Change \since from 6.9 to 6.10 to reflect API status Functions in 6.10 were incorrectly marked as \since 6.9. This was noticed when automatic cherry-picking of a documentation change failed. Change-Id: Idc6fe958cd1f4dfed6252e2b1fce6c8fea4d77fb Reviewed-by: Thiago Macieira --- src/corelib/text/qbytearray.cpp | 4 ++-- src/corelib/text/qstring.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp index 0b63e13cff0..77118ea5d73 100644 --- a/src/corelib/text/qbytearray.cpp +++ b/src/corelib/text/qbytearray.cpp @@ -2013,7 +2013,7 @@ void QByteArray::expand(qsizetype i) /*! \fn QByteArray &QByteArray::nullTerminate() - \since 6.9 + \since 6.10 If this byte array's data isn't null-terminated, this method will make a deep-copy of the data and make it null-terminated. @@ -2028,7 +2028,7 @@ void QByteArray::expand(qsizetype i) /*! \fn QByteArray QByteArray::nullTerminated() const & - \since 6.9 + \since 6.10 Returns a copy of this byte array that is always null-terminated. See nullTerminate(). diff --git a/src/corelib/text/qstring.cpp b/src/corelib/text/qstring.cpp index f23ce02b5f0..ba2f2aabd8f 100644 --- a/src/corelib/text/qstring.cpp +++ b/src/corelib/text/qstring.cpp @@ -7065,7 +7065,7 @@ const ushort *QString::utf16() const /*! \fn QString &QString::nullTerminate() - \since 6.9 + \since 6.10 If this string data isn't null-terminated, this method will make a deep copy of the data and make it null-terminated(). @@ -7080,7 +7080,7 @@ const ushort *QString::utf16() const /*! \fn QString QString::nullTerminated() const & - \since 6.9 + \since 6.10 Returns a copy of this string that is always null-terminated. See nullTerminate().