summaryrefslogtreecommitdiffstats
path: root/src/multimedia/video/qabstractvideofilter.cpp
diff options
context:
space:
mode:
authorYoann Lopes <yoann.lopes@theqtcompany.com>2015-08-10 16:49:03 +0200
committerYoann Lopes <yoann.lopes@theqtcompany.com>2015-08-11 13:14:28 +0000
commit6df6cacbb0238a7035a4c66fd5df992bda0a99c2 (patch)
tree32de565252405fcd63736592ffea19b38ed7ac4f /src/multimedia/video/qabstractvideofilter.cpp
parentb8553dae1d5c14c5f2e2ab6e9758e8abe0045cfe (diff)
Fix qdoc warnings.
Change-Id: Ie351f33f88270186b7df0f9cd671fa4e31624231 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
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);