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:
aavit 2012-08-31 16:39:49 +02:00 committed by Qt by Nokia
parent f9bf5a8855
commit b2ae34d9b5
6 changed files with 9 additions and 11 deletions

View File

@ -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()

View File

@ -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
*/

View File

@ -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

View File

@ -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)
{

View File

@ -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);

View File

@ -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
*/
/*!