summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2014-08-08 09:47:09 +0200
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2014-08-09 09:05:51 +0200
commit28bb18c0c08bdf6015a0e71de241d315e53fe940 (patch)
tree91c4b934f09635b7d6c0d1b0d1c6d59faad96e09 /src
parentdcf9883dffc88355402e5697f0572e5241e1c062 (diff)
QStringRef: add missing \since 5.4
{,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 <jedrzej.nowacki@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/tools/qstring.cpp4
1 files changed, 4 insertions, 0 deletions
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()}.)