Fix qdoc warnings of QRgba64.

qtbase/src/gui/painting/qrgba64.h:107: warning: No documentation for 'QRgba64::isOpaque()'
qtbase/src/gui/painting/qrgba64.h:112: warning: No documentation for 'QRgba64::isTransparent()'
qtbase/src/gui/painting/qrgba64.h:121: warning: No documentation for 'QRgba64::setAlpha()'
qtbase/src/gui/painting/qrgba64.h:119: warning: No documentation for 'QRgba64::setBlue()'
qtbase/src/gui/painting/qrgba64.h:118: warning: No documentation for 'QRgba64::setGreen()'
qtbase/src/gui/painting/qrgba64.h:117: warning: No documentation for 'QRgba64::setRed()'
qtbase/src/gui/painting/qrgba64.h:163: warning: No documentation for 'QRgba64::operator=()'

Change-Id: Ic6f6a8415b8ad33917e460737824fc8856776de1
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
This commit is contained in:
Friedemann Kleint 2015-09-10 15:32:20 +02:00
parent 47b3e7d130
commit a96c98fc61

View File

@ -36,12 +36,18 @@
QRgba64 is a 64-bit data-structure containing four 16-bit color channels: Red, green, blue and alpha.
QRgba64 can be used a replacement for QRgb when higher precision is needed. In particular a
premultiplied QRgba64 can operate on unpremultipled QRgb without loss of precision except
premultiplied QRgba64 can operate on unpremultiplied QRgb without loss of precision except
for alpha 0.
\sa QRgb, QColor
*/
/*!
\fn QRgba64 QRgba64::operator=(quint64 rgba)
Assigns the value \a rgba to this instance of QRgba64 and returns it.
*/
/*!
\fn static QRgba64 QRgba64::fromRgba64(quint16 r, quint16 g, quint16 b, quint16 a)
@ -74,28 +80,84 @@
\sa fromRgba()
*/
/*!
\fn bool QRgba64::isOpaque() const
Returns whether the color is fully opaque.
\sa isTransparent(), alpha()
*/
/*!
\fn bool QRgba64::isTransparent() const
Returns whether the color is transparent.
\sa isOpaque(), alpha()
*/
/*!
\fn quint16 QRgba64::red() const
Returns the 16-bit red color component.
\sa setRed()
*/
/*!
\fn QRgba64::setRed(quint16 red)
Sets the red color component of this color to \a red.
\sa red()
*/
/*!
\fn quint16 QRgba64::green() const
Returns the 16-bit green color component.
\sa setGreen()
*/
/*!
\fn QRgba64::setGreen(quint16 green)
Sets the green color component of this color to \a green.
\sa green()
*/
/*!
\fn quint16 QRgba64::blue() const
Returns the 16-bit blue color component.
\sa setBlue()
*/
/*!
\fn QRgba64::setBlue(quint16 blue)
Sets the blue color component of this color to \a blue.
\sa blue()
*/
/*!
\fn quint16 QRgba64::alpha() const
Returns the 16-bit alpha channel.
\sa setAlpha()
*/
/*!
\fn QRgba64::setAlpha(quint16 alpha)
Sets the alpha of this color to \a alpha.
\sa alpha()
*/
/*!