diff options
author | Martin Smith <msmith@trolltech.com> | 2009-06-11 13:21:44 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-06-11 13:22:27 (GMT) |
commit | 26f55ab3ebbb7d1aa7a218cc3373224acc482c56 (patch) | |
tree | ffad91de8c74109aa88251c7a0d029550fe0144a /src | |
parent | dc802d17d998b62546de0a9725535202d7cbf9e4 (diff) | |
download | Qt-26f55ab3ebbb7d1aa7a218cc3373224acc482c56.zip Qt-26f55ab3ebbb7d1aa7a218cc3373224acc482c56.tar.gz Qt-26f55ab3ebbb7d1aa7a218cc3373224acc482c56.tar.bz2 |
doc: Fixed several qdoc warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/graphicsview/qgraphicsitem.cpp | 9 | ||||
-rw-r--r-- | src/gui/painting/qpainterpath.cpp | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index 0390a83..43cbca1 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -3064,7 +3064,7 @@ QPointF QGraphicsItem::transformOrigin() const /*! \since 4.6 - Sets the origin for transformation in item coordinate + Sets the \a origin for transformation in item coordinate \sa transformOrigin(), {Transformations} */ @@ -3079,11 +3079,14 @@ void QGraphicsItem::setTransformOrigin(const QPointF &origin) } /*! - \fn inline void setTransformOrigin(qreal x, qreal y) + \fn void QGraphicsItem::setTransformOrigin(qreal x, qreal y) \since 4.6 \overload + Sets the origin for the transformation to the point + composed of \a x and \a y. + \sa setTransformOrigin(), {Transformations} */ @@ -6483,7 +6486,7 @@ QGraphicsObject::QGraphicsObject(QGraphicsItemPrivate &dd, QGraphicsItem *parent */ /*! - \property QGraphicsObject:y + \property QGraphicsObject::y \brief the y position of the item Describes the items y position. diff --git a/src/gui/painting/qpainterpath.cpp b/src/gui/painting/qpainterpath.cpp index e1bb317..2f3a0cb 100644 --- a/src/gui/painting/qpainterpath.cpp +++ b/src/gui/painting/qpainterpath.cpp @@ -2049,7 +2049,7 @@ QPainterPath QPainterPath::translated(qreal dx, qreal dy) const } /*! - \fn void QPainterPath::translated(const QPointF &offset) + \fn QPainterPath QPainterPath::translated(const QPointF &offset) const; \overload \since 4.6 |