You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several \fn signatures were either incorrect or missing qualifiers
required to make QDoc match the documentation with the declarations.
These were not caught in the CI when testing documentation builds due
to a bug in QDoc.
Task-number: QTBUG-134250
Change-Id: I7a4af11d9bc3687597b348cc2d4ee15212e0281f
Reviewed-by: Thiago Macieira <[email protected]>
(cherry picked from commit b6a01d7)
Reviewed-by: Topi Reiniö <[email protected]>
(cherry picked from commit f08721b)
Reviewed-by: Volker Hilsheimer <[email protected]>
\fn template <typename T, if_string_like<T> = true> QString QString::arg(const T &a, int fieldWidth, QChar fillChar) const
8741
+
\fn template <typename T, QString::if_string_like<T> = true> QString QString::arg(const T &a, int fieldWidth, QChar fillChar) const
8742
8742
8743
8743
Returns a copy of this string with the lowest-numbered place-marker
8744
8744
replaced by string \a a, i.e., \c %1, \c %2, ..., \c %99.
@@ -8804,7 +8804,7 @@ QString QString::arg_impl(QAnyStringView a, int fieldWidth, QChar fillChar) cons
8804
8804
}
8805
8805
8806
8806
/*!
8807
-
\fn template <typename T, if_integral_non_char<T> = true> QString QString::arg(T a, int fieldWidth, int base, QChar fillChar) const
8807
+
\fn template <typename T, QString::if_integral_non_char<T> = true> QString QString::arg(T a, int fieldWidth, int base, QChar fillChar) const
8808
8808
\overload arg()
8809
8809
8810
8810
The \a a argument is expressed in base \a base, which is 10 by
@@ -8896,7 +8896,7 @@ QString QString::arg_impl(qulonglong a, int fieldWidth, int base, QChar fillChar
8896
8896
}
8897
8897
8898
8898
/*!
8899
-
\fn template <typename T, if_floating_point<T> = true> QString QString::arg(T a, int fieldWidth, char format, int precision, QChar fillChar) const
8899
+
\fn template <typename T, QString::if_floating_point<T> = true> QString QString::arg(T a, int fieldWidth, char format, int precision, QChar fillChar) const
8900
8900
\overload arg()
8901
8901
8902
8902
Argument \a a is formatted according to the specified \a format and
0 commit comments