diff --git a/src/corelib/global/qnumeric.cpp b/src/corelib/global/qnumeric.cpp index 63055a0b61c..92f28af610d 100644 --- a/src/corelib/global/qnumeric.cpp +++ b/src/corelib/global/qnumeric.cpp @@ -256,6 +256,7 @@ Q_CORE_EXPORT quint64 qFloatDistance(double a, double b) /*! \fn template bool qAddOverflow(T v1, T v2, T *result) + \relates \since 6.1 Adds two values \a v1 and \a v2, of a numeric type \c T and records the @@ -287,6 +288,7 @@ Q_CORE_EXPORT quint64 qFloatDistance(double a, double b) /*! \fn template bool qSubOverflow(T v1, T v2, T *result) + \relates \since 6.1 Subtracts \a v2 from \a v1 and records the resulting value in \a result. If @@ -318,6 +320,7 @@ Q_CORE_EXPORT quint64 qFloatDistance(double a, double b) /*! \fn template bool qMulOverflow(T v1, T v2, T *result) + \relates \since 6.1 Multiplies \a v1 and \a v2, and records the resulting value in \a result. If diff --git a/src/corelib/kernel/qmetatype.cpp b/src/corelib/kernel/qmetatype.cpp index 1bb59792888..d85229b2a44 100644 --- a/src/corelib/kernel/qmetatype.cpp +++ b/src/corelib/kernel/qmetatype.cpp @@ -2657,7 +2657,7 @@ static inline int qMetaTypeTypeImpl(const char *typeName, int length) */ /*! - \a internal + \internal Similar to QMetaType::type(); the only difference is that this function doesn't attempt to normalize the type name (i.e., the lookup will fail diff --git a/src/testlib/qtestcase.qdoc b/src/testlib/qtestcase.qdoc index 9c36d779fb4..eb8f435cd0f 100644 --- a/src/testlib/qtestcase.qdoc +++ b/src/testlib/qtestcase.qdoc @@ -163,6 +163,7 @@ /*! \macro QVERIFY_THROWS_EXCEPTION(exceptiontype, ...) + \relates QTest \since 6.3 The QVERIFY_THROWS_EXCEPTION macro executes the expression given in the variadic diff --git a/src/widgets/styles/qdrawutil.cpp b/src/widgets/styles/qdrawutil.cpp index 17837ace0d3..d856ecb2461 100644 --- a/src/widgets/styles/qdrawutil.cpp +++ b/src/widgets/styles/qdrawutil.cpp @@ -799,6 +799,7 @@ void qDrawWinButton(QPainter *p, const QRect &r, /*! \fn void qDrawWinPanel(QPainter *painter, const QRect &rect, const QPalette &palette, bool sunken, const QBrush *fill) + \relates \overload Draws the Windows-style panel at the rectangle specified by \a rect using @@ -895,6 +896,7 @@ void qDrawPlainRect(QPainter *p, const QRect &r, const QColor &c, typedef QVarLengthArray QPixmapFragmentsArray; /*! + \relates \since 4.6 Draws the indicated \a sourceRect rectangle from the given \a pixmap into diff --git a/src/widgets/widgets/qeffects.cpp b/src/widgets/widgets/qeffects.cpp index f5acfe27b86..0b929630219 100644 --- a/src/widgets/widgets/qeffects.cpp +++ b/src/widgets/widgets/qeffects.cpp @@ -553,7 +553,7 @@ void QRollEffect::scroll() } } -/*! +/* Scroll widget \a w in \a time ms. \a orient may be 1 (vertical), 2 (horizontal) or 3 (diagonal). */ @@ -576,7 +576,7 @@ void qScrollEffect(QWidget* w, QEffects::DirFlags orient, int time) q_roll->run(time); } -/*! +/* Fade in widget \a w in \a time ms. */ void qFadeEffect(QWidget* w, int time)