Doc: More fixes of qdoc-reported doc errors
Change-Id: I2dd815c471e56d2c239a63e7c7ad3496af2a585b Reviewed-by: Kim M. Kalland <kim.kalland@nokia.com>
This commit is contained in:
parent
f9bf5a8855
commit
b2ae34d9b5
@ -65,7 +65,7 @@ static inline QVariant themeableHint(QPlatformTheme::ThemeHint th,
|
||||
/*!
|
||||
\class QStyleHints
|
||||
\since 5.0
|
||||
\brief The QStyleHints contains platform specific hints and settings.
|
||||
\brief The QStyleHints class contains platform specific hints and settings.
|
||||
\inmodule QtGui
|
||||
*/
|
||||
QStyleHints::QStyleHints()
|
||||
|
@ -4711,11 +4711,7 @@ static void drawEllipse_midpoint_i(const QRect &rect, const QRect &clip,
|
||||
/*!
|
||||
\fn void QRasterPaintEngine::drawPoints(const QPoint *points, int pointCount)
|
||||
\overload
|
||||
|
||||
Draws the first \a pointCount points in the buffer \a points
|
||||
|
||||
The default implementation converts the first \a pointCount QPoints in \a points
|
||||
to QPointFs and calls the floating point version of drawPoints.
|
||||
\reimp
|
||||
*/
|
||||
|
||||
|
||||
|
@ -1526,7 +1526,7 @@ bool QPainter::isActive() const
|
||||
|
||||
/*!
|
||||
Initializes the painters pen, background and font to the same as
|
||||
the given \a paint device.
|
||||
the given \a device.
|
||||
|
||||
\obsolete
|
||||
|
||||
|
@ -118,7 +118,7 @@ QString QPdfWriter::title() const
|
||||
}
|
||||
|
||||
/*!
|
||||
Sets the title of the document being created.
|
||||
Sets the title of the document being created to \a title.
|
||||
*/
|
||||
void QPdfWriter::setTitle(const QString &title)
|
||||
{
|
||||
@ -136,7 +136,7 @@ QString QPdfWriter::creator() const
|
||||
}
|
||||
|
||||
/*!
|
||||
Sets the creator of the document.
|
||||
Sets the creator of the document to \a creator.
|
||||
*/
|
||||
void QPdfWriter::setCreator(const QString &creator)
|
||||
{
|
||||
|
@ -990,6 +990,10 @@ QPolygonF QPolygonF::subtracted(const QPolygonF &r) const
|
||||
return subject.subtracted(clip).toFillPolygon();
|
||||
}
|
||||
|
||||
/*!
|
||||
Returns the polygon as a QVariant.
|
||||
*/
|
||||
|
||||
QPolygonF::operator QVariant() const
|
||||
{
|
||||
return QVariant(QMetaType::QPolygonF, this);
|
||||
|
@ -128,8 +128,6 @@ QT_BEGIN_NAMESPACE
|
||||
\value Intermediate The string is a plausible intermediate value.
|
||||
\value Acceptable The string is acceptable as a final result;
|
||||
i.e. it is valid.
|
||||
|
||||
\omitvalue Valid
|
||||
*/
|
||||
|
||||
/*!
|
||||
|
Loading…
Reference in New Issue
Block a user