From 28bb18c0c08bdf6015a0e71de241d315e53fe940 Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Fri, 8 Aug 2014 09:47:09 +0200 Subject: [PATCH] QStringRef: add missing \since 5.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit {,c}{begin,end}() were added post-5.3, in 1a6f490b, but weren't marked with \since 5.4. Add it. Change-Id: Ide743833144f784c7d09b125e7a22f9b184ed823 Reviewed-by: Jędrzej Nowacki --- src/corelib/tools/qstring.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/corelib/tools/qstring.cpp b/src/corelib/tools/qstring.cpp index 87c5e65fe0..23c75f4e05 100644 --- a/src/corelib/tools/qstring.cpp +++ b/src/corelib/tools/qstring.cpp @@ -8518,18 +8518,21 @@ ownership of it, no memory is freed when instances are destroyed. /*! \fn const QChar *QStringRef::begin() const + \since 5.4 Same as unicode(). */ /*! \fn const QChar *QStringRef::cbegin() const + \since 5.4 Same as unicode(). */ /*! \fn const QChar *QStringRef::end() const + \since 5.4 Returns a pointer to one character past the last one in this string. (It is the same as \c {unicode() + size()}.) @@ -8537,6 +8540,7 @@ ownership of it, no memory is freed when instances are destroyed. /*! \fn const QChar *QStringRef::cend() const + \since 5.4 Returns a pointer to one character past the last one in this string. (It is the same as \c {unicode() + size()}.)