qtmobility/src/multimedia/qvideowidgetcontrol.cpp
changeset 14 6fbed849b4f4
parent 11 06b8e2af4411
--- a/qtmobility/src/multimedia/qvideowidgetcontrol.cpp	Fri Jun 11 14:26:25 2010 +0300
+++ b/qtmobility/src/multimedia/qvideowidgetcontrol.cpp	Wed Jun 23 19:08:38 2010 +0300
@@ -51,28 +51,29 @@
     \brief The QVideoWidgetControl class provides a media control which
     implements a video widget.
 
-    \ingroup multimedia-serv
+    \ingroup multimedia
 
-    The videoWidget() property of QVideoWidgetControl provides a pointer to
-    a video widget implemented by the control's media service.  This widget
-    is owned by the media service and so care should be taken not to delete it.
+    The videoWidget() property of QVideoWidgetControl provides a pointer to a
+    video widget implemented by the control's media service.  This widget is
+    owned by the media service and so care should be taken not to delete it.
 
     \code
-    QVideoWidgetControl *widgetControl = mediaService->control<QVideoWidgetControl *>();
+    QVideoWidgetControl *widgetControl = mediaService->requestControl<QVideoWidgetControl *>();
 
     layout->addWidget(widgetControl->widget());
     \endcode
 
-    QVideoWidgetControl is one of number of possible video output controls,
-    in order to receive video it must be made the active video output
-    control by setting the output property of QVideoOutputControl to \l {QVideoOutputControl::WidgetOutput}{WidgetOutput}. Consequently any
+    QVideoWidgetControl is one of number of possible video output controls, in
+    order to receive video it must be made the active video output control by
+    setting the output property of QVideoOutputControl to \l
+    {QVideoOutputControl::WidgetOutput}{WidgetOutput}. Consequently any
     QMediaService that implements QVideoWidgetControl must also implement
     QVideoOutputControl.
 
     The interface name of QVideoWidgetControl is \c com.nokia.Qt.QVideoWidgetControl/1.0 as
     defined in QVideoWidgetControl_iid.
 
-    \sa QMediaService::control(), QVideoOutputControl, QVideoWidget
+    \sa QMediaService::requestControl(), QVideoOutputControl, QVideoWidget
 */
 
 /*!