summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qdeadlinetimer.cpp4
-rw-r--r--src/corelib/kernel/qmetacontainer.cpp2
-rw-r--r--src/corelib/kernel/qmetatype.cpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/src/corelib/kernel/qdeadlinetimer.cpp b/src/corelib/kernel/qdeadlinetimer.cpp
index 739082afcce..1b464433d42 100644
--- a/src/corelib/kernel/qdeadlinetimer.cpp
+++ b/src/corelib/kernel/qdeadlinetimer.cpp
@@ -124,7 +124,7 @@ static qint64 add_saturate(qint64 t1, Duration1 dur, Durations... extra)
\snippet code/src_corelib_kernel_qdeadlinetimer.cpp 2
- \sa QTime, QChronoTimer, QDeadlineTimer, Qt::TimerType
+ \sa QTime, QChronoTimer, QElapsedTimer, Qt::TimerType
*/
/*!
@@ -500,7 +500,7 @@ qint64 QDeadlineTimer::deadline() const noexcept
\note Timers that were created as expired have an indetermine time point in
the past as their deadline, so the above calculation may not work.
- \sa remainingTime(), deadlineNSecs()
+ \sa remainingTime(), deadline(), setDeadline()
*/
qint64 QDeadlineTimer::deadlineNSecs() const noexcept
{
diff --git a/src/corelib/kernel/qmetacontainer.cpp b/src/corelib/kernel/qmetacontainer.cpp
index 9c2e5f5401b..de635f65e60 100644
--- a/src/corelib/kernel/qmetacontainer.cpp
+++ b/src/corelib/kernel/qmetacontainer.cpp
@@ -467,7 +467,7 @@ void *QMetaContainer::begin(void *container) const
Returns \c nullptr if the container doesn't offer any non-const iterators.
- \sa hasIterator(), end(), constBegin(), constEnd(), destroyIterator()
+ \sa hasIterator(), begin(), constBegin(), constEnd(), destroyIterator()
*/
void *QMetaContainer::end(void *container) const
{
diff --git a/src/corelib/kernel/qmetatype.cpp b/src/corelib/kernel/qmetatype.cpp
index 411b8bc75be..1850a148d19 100644
--- a/src/corelib/kernel/qmetatype.cpp
+++ b/src/corelib/kernel/qmetatype.cpp
@@ -611,7 +611,7 @@ int QMetaType::registerHelper(const QtPrivate::QMetaTypeInterface *iface)
This function is typically used together with construct()
to perform low-level management of the memory used by a type.
- \sa QMetaType::construct(), QMetaType::sizeOf(), QMetaType::alignOf()
+ \sa QMetaType::construct(), QMetaType::alignOf()
*/
/*!
@@ -637,7 +637,7 @@ int QMetaType::registerHelper(const QtPrivate::QMetaTypeInterface *iface)
constructed. To inspect specific type traits, prefer using one of the "is-"
functions rather than the flags directly.
- \sa QMetaType::TypeFlags, QMetaType::flags(), isDefaultConstructible(),
+ \sa QMetaType::TypeFlags, isDefaultConstructible(),
isCopyConstructible(), isMoveConstructible(), isDestructible(),
isEqualityComparable(), isOrdered()
*/