summaryrefslogtreecommitdiffstats
path: root/src/multimedia/playback/qmediacontent.cpp
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2012-01-16 15:19:20 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-16 07:32:24 +0100
commita6268601c907c56555ae42668e983a447c0da2eb (patch)
tree8e702efd10ec2eae5688d2afa6d660930c89399f /src/multimedia/playback/qmediacontent.cpp
parentb228ff95d763fc954ffe34b2fdbc73d88ed25758 (diff)
Remove antiquated \since lines in docs.
They aren't useful in the case of QtMultimedia{Kit} Change-Id: If1b0b6625763c85907fb05beb9c440046472ddef Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
Diffstat (limited to 'src/multimedia/playback/qmediacontent.cpp')
-rw-r--r--src/multimedia/playback/qmediacontent.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/multimedia/playback/qmediacontent.cpp b/src/multimedia/playback/qmediacontent.cpp
index 798259c26..76e23791f 100644
--- a/src/multimedia/playback/qmediacontent.cpp
+++ b/src/multimedia/playback/qmediacontent.cpp
@@ -89,7 +89,6 @@ private:
\inmodule QtMultimedia
\ingroup multimedia
- \since 1.0
QMediaContent is used within the multimedia framework as the logical handle
to media content. A QMediaContent object is composed of one or more
@@ -112,7 +111,6 @@ QMediaContent::QMediaContent()
/*!
Constructs a media content with \a url providing a reference to the content.
- \since 1.0
*/
QMediaContent::QMediaContent(const QUrl &url):
@@ -126,7 +124,6 @@ QMediaContent::QMediaContent(const QUrl &url):
This constructor can be used to reference media content via network protocols such as HTTP.
This may include additional information required to obtain the resource, such as Cookies or HTTP headers.
- \since 1.0
*/
QMediaContent::QMediaContent(const QNetworkRequest &request):
@@ -137,7 +134,6 @@ QMediaContent::QMediaContent(const QNetworkRequest &request):
/*!
Constructs a media content with \a resource providing a reference to the content.
- \since 1.0
*/
QMediaContent::QMediaContent(const QMediaResource &resource):
@@ -148,7 +144,6 @@ QMediaContent::QMediaContent(const QMediaResource &resource):
/*!
Constructs a media content with \a resources providing a reference to the content.
- \since 1.0
*/
QMediaContent::QMediaContent(const QMediaResourceList &resources):
@@ -158,7 +153,6 @@ QMediaContent::QMediaContent(const QMediaResourceList &resources):
/*!
Constructs a copy of the media content \a other.
- \since 1.0
*/
QMediaContent::QMediaContent(const QMediaContent &other):
@@ -176,7 +170,6 @@ QMediaContent::~QMediaContent()
/*!
Assigns the value of \a other to this media content.
- \since 1.0
*/
QMediaContent& QMediaContent::operator=(const QMediaContent &other)
@@ -187,7 +180,6 @@ QMediaContent& QMediaContent::operator=(const QMediaContent &other)
/*!
Returns true if \a other is equivalent to this media content; false otherwise.
- \since 1.0
*/
bool QMediaContent::operator==(const QMediaContent &other) const
@@ -199,7 +191,6 @@ bool QMediaContent::operator==(const QMediaContent &other) const
/*!
Returns true if \a other is not equivalent to this media content; false otherwise.
- \since 1.0
*/
bool QMediaContent::operator!=(const QMediaContent &other) const
@@ -209,7 +200,6 @@ bool QMediaContent::operator!=(const QMediaContent &other) const
/*!
Returns true if this media content is null (uninitialized); false otherwise.
- \since 1.0
*/
bool QMediaContent::isNull() const
@@ -219,7 +209,6 @@ bool QMediaContent::isNull() const
/*!
Returns a QUrl that represents that canonical resource for this media content.
- \since 1.0
*/
QUrl QMediaContent::canonicalUrl() const
@@ -229,7 +218,6 @@ QUrl QMediaContent::canonicalUrl() const
/*!
Returns a QNetworkRequest that represents that canonical resource for this media content.
- \since 1.0
*/
QNetworkRequest QMediaContent::canonicalRequest() const
@@ -239,7 +227,6 @@ QNetworkRequest QMediaContent::canonicalRequest() const
/*!
Returns a QMediaResource that represents that canonical resource for this media content.
- \since 1.0
*/
QMediaResource QMediaContent::canonicalResource() const
@@ -252,7 +239,6 @@ QMediaResource QMediaContent::canonicalResource() const
/*!
Returns a list of alternative resources for this media content. The first item in this list
is always the canonical resource.
- \since 1.0
*/
QMediaResourceList QMediaContent::resources() const