diff options
author | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-08-26 13:05:25 (GMT) |
---|---|---|
committer | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-08-26 13:07:04 (GMT) |
commit | 42ff4d0a4c5af1f4e136f5772706367f1775c4bd (patch) | |
tree | 9899cd86381beb0cca6235bb9541df379ed4dc97 /src/gui/kernel | |
parent | eb39ecce531f67b4f8b791f76796ab9010c9e745 (diff) | |
download | Qt-42ff4d0a4c5af1f4e136f5772706367f1775c4bd.zip Qt-42ff4d0a4c5af1f4e136f5772706367f1775c4bd.tar.gz Qt-42ff4d0a4c5af1f4e136f5772706367f1775c4bd.tar.bz2 |
doc: fixes qdoc warnings/errors related to the Graphics Effect framework.
Reviewed-by: Kavindra
Diffstat (limited to 'src/gui/kernel')
-rw-r--r-- | src/gui/kernel/qwidget.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index 62d0848..d39044a 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -4970,6 +4970,13 @@ void QWidgetPrivate::setSoftKeys_sys(const QList<QAction*> &softkeys) } #endif // !defined(Q_OS_SYMBIAN) +/*! + Returns a pointer to this widget's effect if it has one; otherwise 0. + + \since 4.6 + + \sa setGraphicsEffect() +*/ QGraphicsEffect *QWidget::graphicsEffect() const { Q_D(const QWidget); @@ -4987,6 +4994,8 @@ QGraphicsEffect *QWidget::graphicsEffect() const \note This function will apply the effect on itself and all its children. \since 4.6 + + \sa graphicsEffect() */ void QWidget::setGraphicsEffect(QGraphicsEffect *effect) { |