Remove the usage of deprecated qdoc macros.

QDoc now has support for Doxygen style commands for italics, bold
and list items. This change applies that change in QDoc to the
actual documentation.

Task-number: QTBUG-24578
Change-Id: Iec1c616e0d9a915a31a661916805916e19495dc9
Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
This commit is contained in:
Casper van Donderen
2012-03-01 18:50:38 +01:00
committed by Qt by Nokia
parent 3d0a14efce
commit d1b6bf5fac
41 changed files with 498 additions and 498 deletions

View File

@@ -55,11 +55,11 @@ Basically, the idea is that to use the Multimedia API you would use these
three classes or classes derived from them as follows
\list
\o \l QMediaServiceProvider is used by the top level client class to request a service. The top level class knowing what kind of service it needs.
\li \l QMediaServiceProvider is used by the top level client class to request a service. The top level class knowing what kind of service it needs.
\o \l QMediaService provides a service and when asked by the top level object, say a component, will return a QMediaControl object.
\li \l QMediaService provides a service and when asked by the top level object, say a component, will return a QMediaControl object.
\o \l QMediaControl allows the control of the service using a known interface.
\li \l QMediaControl allows the control of the service using a known interface.
\endlist
Consider a developer creating, for example, a media player class called MyPlayer.