diff --git a/src/corelib/kernel/qiterable.cpp b/src/corelib/kernel/qiterable.cpp index 80715b23473..a8c93fbc1c6 100644 --- a/src/corelib/kernel/qiterable.cpp +++ b/src/corelib/kernel/qiterable.cpp @@ -240,6 +240,7 @@ QT_BEGIN_NAMESPACE /*! \fn template qsizetype QIterator::operator-(const QIterator &j) const + \overload Returns the distance between the two iterators. @@ -377,6 +378,8 @@ QT_BEGIN_NAMESPACE /*! \fn template qsizetype QConstIterator::operator-(const QConstIterator &j) const + \overload + Returns the distance between the two iterators. \sa operator+(), operator-=(), QIterable::canReverseIterate() diff --git a/src/corelib/text/qbytearray.cpp b/src/corelib/text/qbytearray.cpp index 738d4afb400..1eb5c5b2d25 100644 --- a/src/corelib/text/qbytearray.cpp +++ b/src/corelib/text/qbytearray.cpp @@ -1282,6 +1282,7 @@ QByteArray::iterator QByteArray::erase(QByteArray::const_iterator first, QByteAr /*! \fn QByteArray::iterator QByteArray::erase(QByteArray::const_iterator it) + \overload \since 6.5 Removes the character denoted by \c it from the byte array. diff --git a/src/corelib/text/qstring.cpp b/src/corelib/text/qstring.cpp index 1721b9064ec..95dfd09abd7 100644 --- a/src/corelib/text/qstring.cpp +++ b/src/corelib/text/qstring.cpp @@ -8084,6 +8084,7 @@ QStringList QString::split(const QRegularExpression &re, Qt::SplitBehavior behav } /*! + \overload \since 6.0 Splits the string into substring views wherever the regular expression \a re @@ -9179,6 +9180,7 @@ QString::iterator QString::erase(QString::const_iterator first, QString::const_i /*! \fn QString::iterator QString::erase(QString::const_iterator it) + \overload \since 6.5 Removes the character denoted by \c it from the string. diff --git a/src/corelib/time/qdatetime.cpp b/src/corelib/time/qdatetime.cpp index fc498d9298d..bfe74df1109 100644 --- a/src/corelib/time/qdatetime.cpp +++ b/src/corelib/time/qdatetime.cpp @@ -5563,7 +5563,6 @@ QDateTime QDateTime::fromSecsSinceEpoch(qint64 secs, Qt::TimeSpec spec, int offs /*! \since 5.2 - \overload Returns a datetime representing a moment the given number \a msecs of milliseconds after the start, in UTC, of the year 1970, described as @@ -5595,7 +5594,6 @@ QDateTime QDateTime::fromMSecsSinceEpoch(qint64 msecs) /*! \since 5.8 - \overload Returns a datetime representing a moment the given number \a secs of seconds after the start, in UTC, of the year 1970, described as specified by \a diff --git a/src/gui/accessible/qaccessible.cpp b/src/gui/accessible/qaccessible.cpp index df08963876e..ea8ab097d11 100644 --- a/src/gui/accessible/qaccessible.cpp +++ b/src/gui/accessible/qaccessible.cpp @@ -1655,8 +1655,8 @@ QAccessibleTextRemoveEvent::~QAccessibleTextRemoveEvent() /*! \fn QAccessibleTextInsertEvent::QAccessibleTextInsertEvent(QAccessibleInterface *iface, int position, const QString &text) - Constructs a new QAccessibleTextInsertEvent event for \a iface. The text has been inserted at - \a position. + Constructs a new QAccessibleTextInsertEvent event for \a iface. The \a text has been inserted + at \a position. */ /*! diff --git a/src/gui/painting/qpaintengine.cpp b/src/gui/painting/qpaintengine.cpp index 839be3bd416..aface3744dc 100644 --- a/src/gui/painting/qpaintengine.cpp +++ b/src/gui/painting/qpaintengine.cpp @@ -481,6 +481,8 @@ void QPaintEngine::drawEllipse(const QRectF &rect) } /*! + \overload + The default implementation of this function calls the floating point version of this function */ diff --git a/src/gui/rhi/qrhi.cpp b/src/gui/rhi/qrhi.cpp index 60f40608275..60efc92527a 100644 --- a/src/gui/rhi/qrhi.cpp +++ b/src/gui/rhi/qrhi.cpp @@ -8808,6 +8808,8 @@ void QRhiResourceUpdateBatch::uploadStaticBuffer(QRhiBuffer *buf, quint32 offset } /*! + \overload + Enqueues updating the entire QRhiBuffer \a buf created with the type QRhiBuffer::Immutable or QRhiBuffer::Static. */ diff --git a/src/sql/kernel/qsqldatabase.cpp b/src/sql/kernel/qsqldatabase.cpp index c5061476747..988eee25b31 100644 --- a/src/sql/kernel/qsqldatabase.cpp +++ b/src/sql/kernel/qsqldatabase.cpp @@ -1127,6 +1127,7 @@ bool QSqlDatabase::isDriverAvailable(const QString& name) } /*! \fn QSqlDatabase QSqlDatabase::addDatabase(QSqlDriver* driver, const QString& connectionName) + \overload This overload is useful when you want to create a database connection with a \l{QSqlDriver} {driver} you instantiated