summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video/qabstractvideofilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/multimedia/video/qabstractvideofilter.cpp')
-rw-r--r--src/multimedia/video/qabstractvideofilter.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/multimedia/video/qabstractvideofilter.cpp b/src/multimedia/video/qabstractvideofilter.cpp
index ccfe9ccdd..7d326ddff 100644
--- a/src/multimedia/video/qabstractvideofilter.cpp
+++ b/src/multimedia/video/qabstractvideofilter.cpp
@@ -276,10 +276,13 @@ QAbstractVideoFilter::~QAbstractVideoFilter()
}
/*!
- \return \c true if the filter is active.
+ \property QAbstractVideoFilter::active
+ \brief the active status of the filter.
- By default filters are active. When set to \c false, the filter will be
- ignored by the VideoOutput type.
+ This is true if the filter is active, false otherwise.
+
+ By default filters are active. When set to \c false, the filter will be
+ ignored by the VideoOutput type.
*/
bool QAbstractVideoFilter::isActive() const
{
@@ -287,9 +290,6 @@ bool QAbstractVideoFilter::isActive() const
return d->active;
}
-/*!
- \internal
- */
void QAbstractVideoFilter::setActive(bool v)
{
Q_D(QAbstractVideoFilter);