From 698e633d8c4a6f1e61c61cf70591e7974eea3caa Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Tue, 26 Sep 2023 13:59:42 +0000 Subject: [PATCH] Doc: Fix QRgbaFloat function signatures Commit baac34de modified the set[Red|Green|Blue|Alpha] function signatures. Amend the \fn commands to reflect those changes. Change-Id: I947995fc5c80baac111a04272cd848961c22eb73 Reviewed-by: Allan Sandfeld Jensen (cherry picked from commit 7fdef80a6b4ee715914110687c61338042632348) Reviewed-by: Qt Cherry-pick Bot --- src/gui/painting/qrgbafloat.qdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/painting/qrgbafloat.qdoc b/src/gui/painting/qrgbafloat.qdoc index f41064df384..718cd310168 100644 --- a/src/gui/painting/qrgbafloat.qdoc +++ b/src/gui/painting/qrgbafloat.qdoc @@ -81,7 +81,7 @@ */ /*! - \fn template void QRgbaFloat::setRed(QRgbaFloat::FastType red) + \fn template void QRgbaFloat::setRed(float red) Sets the red color component of this color to \a red. @@ -97,7 +97,7 @@ */ /*! - \fn template void QRgbaFloat::setGreen(QRgbaFloat::FastType green) + \fn template void QRgbaFloat::setGreen(float green) Sets the green color component of this color to \a green. @@ -113,7 +113,7 @@ */ /*! - \fn template void QRgbaFloat::setBlue(QRgbaFloat::FastType blue) + \fn template void QRgbaFloat::setBlue(float blue) Sets the blue color component of this color to \a blue. @@ -129,7 +129,7 @@ */ /*! - \fn template void QRgbaFloat::setAlpha(QRgbaFloat::FastType alpha) + \fn template void QRgbaFloat::setAlpha(float alpha) Sets the alpha of this color to \a alpha.