Doc: Fix QRgbaFloat function signatures

Commit baac34de modified the set[Red|Green|Blue|Alpha] function
signatures. Amend the \fn commands to reflect those changes.

Pick-to: 6.6
Change-Id: I947995fc5c80baac111a04272cd848961c22eb73
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
bb10
Topi Reinio 2023-09-26 13:59:42 +00:00
parent c0d1029e8e
commit 7fdef80a6b
1 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@
*/
/*!
\fn template<typename F> void QRgbaFloat<F>::setRed(QRgbaFloat::FastType red)
\fn template<typename F> void QRgbaFloat<F>::setRed(float red)
Sets the red color component of this color to \a red.
@ -97,7 +97,7 @@
*/
/*!
\fn template<typename F> void QRgbaFloat<F>::setGreen(QRgbaFloat::FastType green)
\fn template<typename F> void QRgbaFloat<F>::setGreen(float green)
Sets the green color component of this color to \a green.
@ -113,7 +113,7 @@
*/
/*!
\fn template<typename F> void QRgbaFloat<F>::setBlue(QRgbaFloat::FastType blue)
\fn template<typename F> void QRgbaFloat<F>::setBlue(float blue)
Sets the blue color component of this color to \a blue.
@ -129,7 +129,7 @@
*/
/*!
\fn template<typename F> void QRgbaFloat<F>::setAlpha(QRgbaFloat::FastType alpha)
\fn template<typename F> void QRgbaFloat<F>::setAlpha(float alpha)
Sets the alpha of this color to \a alpha.