Fix some qdoc-warnings.

qtmultimedia/src/multimedia/qmediaserviceprovider.cpp:850: warning: Cannot find 'defaultDevice(...)' in '\fn' QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
qtmultimedia/src/multimedia/qmediaserviceprovider.cpp:850: warning: Cannot find 'defaultDevice(...)' in '\fn' QByteArray QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
qtmultimedia/src/multimedia/video/qabstractvideofilter.cpp:261: warning: Undocumented parameter 'parent' in QAbstractVideoFilter::QAbstractVideoFilter()

Change-Id: I72bfc1dc7697cd1323cb7aad16539932ace9d8ea
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
This commit is contained in:
Friedemann Kleint
2015-02-20 14:35:55 +01:00
parent 36e90b6928
commit 8c73595c02
2 changed files with 4 additions and 4 deletions

View File

@@ -850,19 +850,19 @@ QMediaServiceProvider *QMediaServiceProvider::defaultServiceProvider()
/*!
\since 5.3
\fn QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
\fn QByteArray QMediaServiceSupportedDevicesInterface::defaultDevice(const QByteArray &service) const
Returns the default device for a \a service type.
*/
/*!
\fn QMediaServiceSupportedDevicesInterface::devices(const QByteArray &service) const
\fn QList<QByteArray> QMediaServiceSupportedDevicesInterface::devices(const QByteArray &service) const
Returns a list of devices available for a \a service type.
*/
/*!
\fn QMediaServiceSupportedDevicesInterface::deviceDescription(const QByteArray &service, const QByteArray &device)
\fn QString QMediaServiceSupportedDevicesInterface::deviceDescription(const QByteArray &service, const QByteArray &device)
Returns the description of a \a device available for a \a service type.
*/

View File

@@ -259,7 +259,7 @@ QVideoFilterRunnable::~QVideoFilterRunnable()
}
/*!
Constructs a new QAbstractVideoFilter instance.
Constructs a new QAbstractVideoFilter instance with parent object \a parent.
*/
QAbstractVideoFilter::QAbstractVideoFilter(QObject *parent) :
QObject(parent),